diff options
author | Snoopy Pfeffer | 2012-04-10 21:49:43 +0200 |
---|---|---|
committer | Snoopy Pfeffer | 2012-04-10 21:49:43 +0200 |
commit | 78fd487a705c91720991a7572b860567f36366c4 (patch) | |
tree | cfd82a5742b050ab3e426cad1d262ad692cf16fe /OpenSim/Region/Framework/Interfaces | |
parent | Add uri to various log messages when region registration fails. Upgrade some... (diff) | |
download | opensim-SC_OLD-78fd487a705c91720991a7572b860567f36366c4.zip opensim-SC_OLD-78fd487a705c91720991a7572b860567f36366c4.tar.gz opensim-SC_OLD-78fd487a705c91720991a7572b860567f36366c4.tar.bz2 opensim-SC_OLD-78fd487a705c91720991a7572b860567f36366c4.tar.xz |
New OS scripting functions osSetTerrainTexture and osSetTerrainHeight as originally proposed in SL Jira (https://jira.secondlife.com/browse/SVC-244).
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IEstateModule.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs index 721f0ee..15cd238 100644 --- a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs | |||
@@ -45,5 +45,8 @@ namespace OpenSim.Region.Framework.Interfaces | |||
45 | /// Tell all clients about the current state of the region (terrain textures, water height, etc.). | 45 | /// Tell all clients about the current state of the region (terrain textures, water height, etc.). |
46 | /// </summary> | 46 | /// </summary> |
47 | void sendRegionHandshakeToAll(); | 47 | void sendRegionHandshakeToAll(); |
48 | |||
49 | void setEstateTerrainBaseTexture(int level, UUID texture); | ||
50 | void setEstateTerrainTextureHeights(int corner, float lowValue, float highValue); | ||
48 | } | 51 | } |
49 | } | 52 | } |