Rotation.Update C# (CSharp) 메소드

Update() 개인적인 메소드

private Update ( ) : void
리턴 void
    void Update()
    {
        transform.Rotate(new Vector3(0, Time.deltaTime*100f, 0));
    }

Usage Example

예제 #1
0
 void Update()
 {
     Fsm?.Update();
     Movement?.Update();
     Rotation?.Update();
     Scale?.Update();
 }
All Usage Examples Of Rotation::Update
Rotation