Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetVehicleFloatParam C# (CSharp) Метод

llSetVehicleFloatParam() публичный Метод

public llSetVehicleFloatParam ( int param, Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLFloat value ) : void
param int
value Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLFloat
Результат void
        public void llSetVehicleFloatParam(int param, LSL_Float value)
        {
            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.SetVehicleFloatParam(param, (float)value);
                }
            }
        }
LSL_Api