AssemblyCSharp.BatonController.Update C# (CSharp) Method

Update() public method

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