add vector variant of osSlerp; update script syntax

This commit is contained in:
UbitUmarov
2021-01-06 16:32:51 +00:00
parent be649ee7e5
commit a3b26255dd
6 changed files with 90 additions and 41 deletions

View File

@@ -1432,6 +1432,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_OSSL_Functions.osSlerp(a, b, amount);
}
public vector osSlerp(vector a, vector b, LSL_Float amount)
{
return m_OSSL_Functions.osSlerp(a, b, amount);
}
public void osResetAllScripts(LSL_Integer allLinkSet)
{
m_OSSL_Functions.osResetAllScripts(allLinkSet);