iTween.Init C# (CSharp) Method

Init() public static method

Sets up a GameObject to avoid hiccups when an initial iTween is added. It's advisable to run this on every object you intend to run iTween on in its Start or Awake.
public static Init ( GameObject target ) : void
target GameObject /// A to be the target to be initialized for iTween. ///
return void
    public static void Init(GameObject target)
    {
        MoveBy(target,Vector3.zero,0);
    }
iTween