diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs index fb521df..14f66e8 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | |||
@@ -2876,6 +2876,17 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler | |||
2876 | // | 2876 | // |
2877 | // OpenSim functions | 2877 | // OpenSim functions |
2878 | // | 2878 | // |
2879 | public int osTerrainSetHeight(int x, int y, double val) | ||
2880 | { | ||
2881 | World.Terrain.Set(x, y, val); | ||
2882 | return 1; | ||
2883 | } | ||
2884 | |||
2885 | public double osTerrainGetHeight(int x, int y) | ||
2886 | { | ||
2887 | return World.Terrain.GetHeight(x, y); | ||
2888 | } | ||
2889 | |||
2879 | public string osSetDynamicTextureURL(string dynamicID, string contentType, string url, string extraParams, | 2890 | public string osSetDynamicTextureURL(string dynamicID, string contentType, string url, string extraParams, |
2880 | int timer) | 2891 | int timer) |
2881 | { | 2892 | { |