GameGraphics.GraphicsObject.SetAngle C# (CSharp) Method

SetAngle() public method

Sets the angle of the GraphicsObject
public SetAngle ( float a ) : void
a float the angle to be given to the object
return void
        public void SetAngle(float a)
        {
            this.angle = a%360;
        }