OsSetTerrainHeight

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Added note stating which version of OpenSim introduced this function)
Line 5: Line 5:
 
|additional_info=This function was added in 0.7.2-post-fixes
 
|additional_info=This function was added in 0.7.2-post-fixes
 
|function_syntax=integer osSetTerrainHeight(integer x, integer y, float val)
 
|function_syntax=integer osSetTerrainHeight(integer x, integer y, float val)
|csharp_syntax= integer osSetTerrainHeight(integer x, integer y, double val)
 
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
 
  default
 
  default

Revision as of 11:42, 7 December 2018

integer osSetTerrainHeight(integer x, integer y, float val)
NOTE' : This function replaces the deprecated OsTerrainSetHeight function.

Sets terrain height X & Y Values, double = float.

osTerrainFlush should be called after all the terrain-changes have been done to update Terrain Data.

Threat Level High
Permissions ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
Example(s)
default
 {
    touch_start()
    {
       OsSetTerrainHeight(40, 101, 21.4);
       osTerrainFlush();
    }
 }
Notes
This function was added in 0.7.2-post-fixes
Personal tools
General
About This Wiki