OpenSim.Region.Framework.Scenes.SceneObjectPart.SetVehicleType C# (CSharp) Method

SetVehicleType() public method

public SetVehicleType ( int type ) : void
type int
return void
        public void SetVehicleType(int type)
        {
            if (PhysActor != null)
            {
                PhysActor.VehicleType = type;
            }
        }
SceneObjectPart