aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-06-19 20:57:00 +0000
committerCharles Krinke2008-06-19 20:57:00 +0000
commit838ffd779280115dee2d24ddd9531728d7426942 (patch)
tree753ce7e8d03e83898cf07cac2c85ca8a382b0a67 /OpenSim/Framework/IClientAPI.cs
parent* Patch from Dahlia - 0001576: Exception of type 'System.OutOfMemoryException... (diff)
downloadopensim-SC_OLD-838ffd779280115dee2d24ddd9531728d7426942.zip
opensim-SC_OLD-838ffd779280115dee2d24ddd9531728d7426942.tar.gz
opensim-SC_OLD-838ffd779280115dee2d24ddd9531728d7426942.tar.bz2
opensim-SC_OLD-838ffd779280115dee2d24ddd9531728d7426942.tar.xz
Mantis#1543. Thank you kindly, Jonc for a patch that:
Implements terrain bake from Region/Estate dialog and respects estate settings during terraforming
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index fafd31d..e4fac1f 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -410,7 +410,7 @@ namespace OpenSim.Framework
410 public delegate void ModifyTerrain( 410 public delegate void ModifyTerrain(
411 float height, float seconds, byte size, byte action, float north, float west, float south, float east, 411 float height, float seconds, byte size, byte action, float north, float west, float south, float east,
412 IClientAPI remoteClient); 412 IClientAPI remoteClient);
413 413
414 public delegate void SetAppearance(byte[] texture, List<byte> visualParamList); 414 public delegate void SetAppearance(byte[] texture, List<byte> visualParamList);
415 415
416 public delegate void StartAnim(IClientAPI remoteClient, LLUUID animID); 416 public delegate void StartAnim(IClientAPI remoteClient, LLUUID animID);
@@ -633,6 +633,7 @@ namespace OpenSim.Framework
633 public delegate void SetEstateTerrainTextureHeights(IClientAPI remoteClient, int corner, float lowVal, float highVal); 633 public delegate void SetEstateTerrainTextureHeights(IClientAPI remoteClient, int corner, float lowVal, float highVal);
634 public delegate void CommitEstateTerrainTextureRequest(IClientAPI remoteClient); 634 public delegate void CommitEstateTerrainTextureRequest(IClientAPI remoteClient);
635 public delegate void SetRegionTerrainSettings(float waterHeight, float terrainRaiseLimit, float terrainLowerLimit, bool fixedSun, float sunHour); 635 public delegate void SetRegionTerrainSettings(float waterHeight, float terrainRaiseLimit, float terrainLowerLimit, bool fixedSun, float sunHour);
636 public delegate void BakeTerrain(IClientAPI remoteClient );
636 public delegate void EstateRestartSimRequest(IClientAPI remoteClient, int secondsTilReboot); 637 public delegate void EstateRestartSimRequest(IClientAPI remoteClient, int secondsTilReboot);
637 public delegate void EstateChangeCovenantRequest(IClientAPI remoteClient, LLUUID newCovenantID); 638 public delegate void EstateChangeCovenantRequest(IClientAPI remoteClient, LLUUID newCovenantID);
638 public delegate void UpdateEstateAccessDeltaRequest(IClientAPI remote_client, LLUUID invoice, int estateAccessType, LLUUID user); 639 public delegate void UpdateEstateAccessDeltaRequest(IClientAPI remote_client, LLUUID invoice, int estateAccessType, LLUUID user);
@@ -693,6 +694,7 @@ namespace OpenSim.Framework
693 event RezObject OnRezObject; 694 event RezObject OnRezObject;
694 [Obsolete("LLClientView Specific - Replace with more suitable arguments.")] 695 [Obsolete("LLClientView Specific - Replace with more suitable arguments.")]
695 event ModifyTerrain OnModifyTerrain; 696 event ModifyTerrain OnModifyTerrain;
697 event BakeTerrain OnBakeTerrain;
696 [Obsolete("LLClientView Specific.")] 698 [Obsolete("LLClientView Specific.")]
697 event SetAppearance OnSetAppearance; 699 event SetAppearance OnSetAppearance;
698 [Obsolete("LLClientView Specific - Replace and rename OnAvatarUpdate. Difference from SetAppearance?")] 700 [Obsolete("LLClientView Specific - Replace and rename OnAvatarUpdate. Difference from SetAppearance?")]