
Properties | |
| double | this [int x, int y] [get, set] |
| Returns [or sets] the heightmap value at specified coordinates. | |
| int | Length [get] |
| The maximum length of the region (Y axis), exclusive. (eg Height = 256, max Y = 255). Minimum is always 0 inclusive. | |
| int | Width [get] |
| The maximum width of the region (X axis), exclusive. (eg Width = 256, max X = 255). Minimum is always 0 inclusive. | |
double OpenSim::Region::OptionalModules::Scripting::Minimodule::IHeightmap::this[int x, int y] [get, set] |
Returns [or sets] the heightmap value at specified coordinates.
| x | X Coordinate | |
| y | Y Coordinate |
Implemented in OpenSim::Region::OptionalModules::Scripting::Minimodule::Heightmap.
int OpenSim::Region::OptionalModules::Scripting::Minimodule::IHeightmap::Length [get] |
The maximum length of the region (Y axis), exclusive. (eg Height = 256, max Y = 255). Minimum is always 0 inclusive.
Host.Console.Info("The terrain length of this region is " + World.Heightmap.Length);
Implemented in OpenSim::Region::OptionalModules::Scripting::Minimodule::Heightmap.
int OpenSim::Region::OptionalModules::Scripting::Minimodule::IHeightmap::Width [get] |
The maximum width of the region (X axis), exclusive. (eg Width = 256, max X = 255). Minimum is always 0 inclusive.
Host.Console.Info("The terrain width of this region is " + World.Heightmap.Width);
Implemented in OpenSim::Region::OptionalModules::Scripting::Minimodule::Heightmap.
1.5.6