mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
doc: Update classref with node renames
A few extra renames for classes which were missed in last week's PRs.
This commit is contained in:
26
doc/classes/HeightMapShape3D.xml
Normal file
26
doc/classes/HeightMapShape3D.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="HeightMapShape3D" inherits="Shape3D" version="4.0">
|
||||
<brief_description>
|
||||
Height map shape for 3D physics (Bullet only).
|
||||
</brief_description>
|
||||
<description>
|
||||
Height map shape resource, which can be added to a [PhysicsBody3D] or [Area3D].
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<methods>
|
||||
</methods>
|
||||
<members>
|
||||
<member name="map_data" type="PackedFloat32Array" setter="set_map_data" getter="get_map_data" default="PackedFloat32Array( 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">
|
||||
Depth of the height map data. 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">
|
||||
Width of the height map data. Changing this will resize the [member map_data].
|
||||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
</constants>
|
||||
</class>
|
||||
Reference in New Issue
Block a user