GoTween.clearTweenProperties C# (CSharp) Method

clearTweenProperties() public method

public clearTweenProperties ( ) : void
return void
    public void clearTweenProperties()
    {
        _tweenPropertyList.Clear();
    }

Usage Example

Ejemplo n.º 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));
     }
 }