Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetVehicleFlags C# (CSharp) Method

llSetVehicleFlags() public method

public llSetVehicleFlags ( int flags ) : void
flags int
return void
        public void llSetVehicleFlags(int flags)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            if (m_host.ParentEntity != null)
            {
                if (!m_host.ParentEntity.IsDeleted)
                {
                    m_host.ParentEntity.RootChild.SetVehicleFlags(flags, false);
                }
            }
        }
LSL_Api