Exemple #1
0
 void Update()
 {
     if (_FxProxy != null)
     {
         _FxProxy.Tick(Time.deltaTime);
     }
 }
Exemple #2
0
    public void Tick(float dt)
    {
        if (IsFixRot)
        {
            transform.rotation = _BeginRotation;
        }

        if (_FxProxy != null)
        {
            _FxProxy.Tick(dt);
        }
    }