Reactor.RCameraComponent.Move C# (CSharp) Method

Move() public method

Moves the camera the specified distance in the specified direction.
public Move ( R3DVECTOR direction, R3DVECTOR distance ) : void
direction R3DVECTOR Direction to move.
distance R3DVECTOR How far to move.
return void
        public void Move(R3DVECTOR direction, R3DVECTOR distance)
        {
            camera.Move(direction, distance);
        }

Same methods

RCameraComponent::Move ( float dx, float dy, float dz ) : void