add LSL_Integer osIsNotValidNumber(LSL_Float v)

This commit is contained in:
UbitUmarov
2019-10-17 23:33:11 +01:00
parent d6abf2a2fe
commit 2a90f78fe1
6 changed files with 77 additions and 56 deletions

View File

@@ -35,7 +35,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
public partial class ScriptBaseClass
{
// SCRIPTS CONSTANTS
public static readonly LSLInteger OS_APIVERSION = 9;
public static readonly LSLInteger OS_APIVERSION = 10;
public static readonly LSLInteger TRUE = 1;
public static readonly LSLInteger FALSE = 0;

View File

@@ -1416,5 +1416,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
m_OSSL_Functions.osResetAllScripts(allLinkSet);
}
public LSL_Integer osIsNotValidNumber(LSL_Float v)
{
return m_OSSL_Functions.osIsNotValidNumber(v);
}
}
}