iTween.Stab C# (CSharp) Method

Stab() public static method

Plays an AudioClip once based on supplied volume and pitch and following any delay with MINIMUM customization options. AudioSource is optional as iTween will provide one.
public static Stab ( GameObject target, AudioClip audioclip, float delay ) : void
target GameObject /// A to be the target of the animation which holds the AudioSource to be utilized. ///
audioclip AudioClip /// A for a reference to the AudioClip to be played. ///
delay float /// A for the time in seconds the action will wait before beginning. ///
return void
    public static void Stab(GameObject target, AudioClip audioclip, float delay)
    {
        Stab(target,Hash("audioclip",audioclip,"delay",delay));
    }

Same methods

iTween::Stab ( GameObject target, Hashtable args ) : void
iTween