12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- :github_url: hide
- .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the HeightMapShape.xml source instead.
- .. The source is found in doc/classes or modules/<name>/doc_classes.
- .. _class_HeightMapShape:
- HeightMapShape
- ==============
- **Inherits:** :ref:`Shape<class_Shape>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
- **Category:** Core
- Brief Description
- -----------------
- Height map shape for 3D physics (bullet only)
- Properties
- ----------
- +-------------------------------------------+-----------------------------------------------------------+
- | :ref:`PoolRealArray<class_PoolRealArray>` | :ref:`map_data<class_HeightMapShape_property_map_data>` |
- +-------------------------------------------+-----------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`map_depth<class_HeightMapShape_property_map_depth>` |
- +-------------------------------------------+-----------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`map_width<class_HeightMapShape_property_map_width>` |
- +-------------------------------------------+-----------------------------------------------------------+
- Description
- -----------
- Height map shape resource, which can be added to a :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`Area<class_Area>`.
- Property Descriptions
- ---------------------
- .. _class_HeightMapShape_property_map_data:
- - :ref:`PoolRealArray<class_PoolRealArray>` **map_data**
- +----------+---------------------+
- | *Setter* | set_map_data(value) |
- +----------+---------------------+
- | *Getter* | get_map_data() |
- +----------+---------------------+
- Height map data, pool array must be of :ref:`map_width<class_HeightMapShape_property_map_width>` \* :ref:`map_depth<class_HeightMapShape_property_map_depth>` size.
- ----
- .. _class_HeightMapShape_property_map_depth:
- - :ref:`int<class_int>` **map_depth**
- +----------+----------------------+
- | *Setter* | set_map_depth(value) |
- +----------+----------------------+
- | *Getter* | get_map_depth() |
- +----------+----------------------+
- Depth of the height map data. Changing this will resize the :ref:`map_data<class_HeightMapShape_property_map_data>`.
- ----
- .. _class_HeightMapShape_property_map_width:
- - :ref:`int<class_int>` **map_width**
- +----------+----------------------+
- | *Setter* | set_map_width(value) |
- +----------+----------------------+
- | *Getter* | get_map_width() |
- +----------+----------------------+
- Width of the height map data. Changing this will resize the :ref:`map_data<class_HeightMapShape_property_map_data>`.
|