AssemblyCSharp.BatonController.Update C# (CSharp) 메소드

Update() 공개 메소드

public Update ( ) : void
리턴 void
        void Update()
        {
            if (stream) this.PositionController();
            //this.HandleButtons();
            Vector3 v = this.transform.position;
            direction = v - lastFrameLocation;
            lastFrameLocation = v;
        }