GoTween.clearTweenProperties C# (CSharp) Метод

clearTweenProperties() публичный Метод

public clearTweenProperties ( ) : void
Результат void
    public void clearTweenProperties()
    {
        _tweenPropertyList.Clear();
    }

Usage Example

Пример #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));
     }
 }