mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="HeightMapShape" inherits="Shape" version="4.2">
|
|
<brief_description>
|
|
Height map shape for 3D physics.
|
|
</brief_description>
|
|
<description>
|
|
Height map shape resource, which can be added to a [PhysicsBody] or [Area].
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<methods>
|
|
</methods>
|
|
<members>
|
|
<member name="map_data" type="PoolRealArray" setter="set_map_data" getter="get_map_data" default="PoolRealArray( 0, 0, 0, 0 )">
|
|
Height map data, pool array must be of [member map_width] * [member map_depth] size.
|
|
</member>
|
|
<member name="map_depth" type="int" setter="set_map_depth" getter="get_map_depth" default="2">
|
|
Number of vertices in the depth of the height map. Changing this will resize the [member map_data].
|
|
</member>
|
|
<member name="map_width" type="int" setter="set_map_width" getter="get_map_width" default="2">
|
|
Number of vertices in the width of the height map. Changing this will resize the [member map_data].
|
|
</member>
|
|
</members>
|
|
<constants>
|
|
</constants>
|
|
</class>
|