OsTerrainFlush
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
| (6 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=VeryLow | |threat_level=VeryLow | ||
| − | |function_syntax= | + | |permissions=ESTATE_MANAGER,ESTATE_OWNER |
| − | + | |delay=0 | |
| − | + | |function_syntax= osTerrainFlush(); | |
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
default | default | ||
| Line 9: | Line 9: | ||
touch_start() | touch_start() | ||
{ | { | ||
| − | + | osSetTerrainHeight(40, 101, 21.4); | |
osTerrainFlush(); | osTerrainFlush(); | ||
} | } | ||
} | } | ||
</source> | </source> | ||
| − | |description=Function updates terrain changes to | + | |description=Function updates terrain changes to OpenSimulator database. This should be called after all the terrain-changes have been done to update Terrain Data. |
Used in conjunction with [[OsSetTerrainHeight]] | Used in conjunction with [[OsSetTerrainHeight]] | ||
| | | | ||
}} | }} | ||
Latest revision as of 16:35, 1 May 2019
osTerrainFlush();
| |
| Function updates terrain changes to OpenSimulator database. This should be called after all the terrain-changes have been done to update Terrain Data.
Used in conjunction with OsSetTerrainHeight | |
| Threat Level | VeryLow |
| Permissions | ESTATE_MANAGER,ESTATE_OWNER |
| Extra Delay | 0 seconds |
| Example(s) | |
default { touch_start() { osSetTerrainHeight(40, 101, 21.4); osTerrainFlush(); } } | |