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

llRemoveVehicleFlags() public method

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

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