diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index 0704378..0f10d8d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -1836,6 +1836,21 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1836 | m_LSL_Functions.llStopAnimation(anim); | 1836 | m_LSL_Functions.llStopAnimation(anim); |
1837 | } | 1837 | } |
1838 | 1838 | ||
1839 | public void llStartObjectAnimation(string anim) | ||
1840 | { | ||
1841 | m_LSL_Functions.llStartObjectAnimation(anim); | ||
1842 | } | ||
1843 | |||
1844 | public void llStopObjectAnimation(string anim) | ||
1845 | { | ||
1846 | m_LSL_Functions.llStopObjectAnimation(anim); | ||
1847 | } | ||
1848 | |||
1849 | public LSL_List llGetObjectAnimationNames() | ||
1850 | { | ||
1851 | return m_LSL_Functions.llGetObjectAnimationNames(); | ||
1852 | } | ||
1853 | |||
1839 | public void llStopHover() | 1854 | public void llStopHover() |
1840 | { | 1855 | { |
1841 | m_LSL_Functions.llStopHover(); | 1856 | m_LSL_Functions.llStopHover(); |