OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llSetVehicleFlags C# (CSharp) Method

llSetVehicleFlags() public method

public llSetVehicleFlags ( int flags ) : void
flags int
return void
        public void llSetVehicleFlags(int flags)
        {
            m_host.AddScriptLPS(1);

            if (!m_host.ParentGroup.IsDeleted)
            {
                m_host.ParentGroup.RootPart.SetVehicleFlags(flags, false);
            }
        }
LSL_Api