GoTween.onInit C# (CSharp) Method

onInit() protected method

called only once the first update of a tween.
protected onInit ( ) : void
return void
    protected override void onInit()
    {
        base.onInit();

        for ( var i = 0; i < _tweenPropertyList.Count; ++i )
            _tweenPropertyList[i].prepareForUse();
    }