add osResetAllScripts(LSL_Integer AllLinkset). use with care

This commit is contained in:
UbitUmarov
2019-10-11 00:01:59 +01:00
parent 55d70f5df7
commit 2c1909a873
5 changed files with 126 additions and 27 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 = 8;
public static readonly LSLInteger OS_APIVERSION = 9;
public static readonly LSLInteger TRUE = 1;
public static readonly LSLInteger FALSE = 0;

View File

@@ -1412,5 +1412,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_OSSL_Functions.osSlerp(a, b, amount);
}
public void osResetAllScripts(LSL_Integer allLinkSet)
{
m_OSSL_Functions.osResetAllScripts(allLinkSet);
}
}
}