diff options
author | Adam Frisby | 2008-04-06 13:48:28 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-06 13:48:28 +0000 |
commit | 996309a6e1ee47d96d81c0bdfdd5bfc27db66efd (patch) | |
tree | 9b9208a28969785a459e30de3ce9f260beb26201 /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |
parent | * Fixed up some documentation (diff) | |
download | opensim-SC-996309a6e1ee47d96d81c0bdfdd5bfc27db66efd.zip opensim-SC-996309a6e1ee47d96d81c0bdfdd5bfc27db66efd.tar.gz opensim-SC-996309a6e1ee47d96d81c0bdfdd5bfc27db66efd.tar.bz2 opensim-SC-996309a6e1ee47d96d81c0bdfdd5bfc27db66efd.tar.xz |
* Various terrain engine fixes
* Includes patch #894 fixes for terrain load-tile
* Large number of other terrain fixes and new commands included.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index c878e7c..3f6f5cc 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -1916,6 +1916,19 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1916 | m_LSL_Functions.osSetPrimFloatOnWater(floatYN); | 1916 | m_LSL_Functions.osSetPrimFloatOnWater(floatYN); |
1917 | } | 1917 | } |
1918 | 1918 | ||
1919 | // Animation Functions | ||
1920 | |||
1921 | public void osAvatarPlayAnimation(string avatar, string animation) | ||
1922 | { | ||
1923 | m_LSL_Functions.osAvatarPlayAnimation(avatar, animation); | ||
1924 | } | ||
1925 | |||
1926 | public void osAvatarStopAnimation(string avatar, string animation) | ||
1927 | { | ||
1928 | m_LSL_Functions.osAvatarStopAnimation(avatar, animation); | ||
1929 | } | ||
1930 | |||
1931 | |||
1919 | //Texture Draw functions | 1932 | //Texture Draw functions |
1920 | 1933 | ||
1921 | public string osMovePen(string drawList, int x, int y) | 1934 | public string osMovePen(string drawList, int x, int y) |