GoTween.clearTweenProperties C# (CSharp) Méthode

clearTweenProperties() public méthode

public clearTweenProperties ( ) : void
Résultat void
    public void clearTweenProperties()
    {
        _tweenPropertyList.Clear();
    }

Usage Example

Exemple #1
0
 static public int clearTweenProperties(IntPtr l)
 {
     try {
         GoTween self = (GoTween)checkSelf(l);
         self.clearTweenProperties();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }