diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-07 18:54:12 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-08 11:58:30 +0000 |
commit | 4da4feed18f56a2bc5c88ffe5a4f73134e353c25 (patch) | |
tree | 1aefe4088867e0a57dcf9bf2c37311fa4557f478 /modules/csg/doc_classes | |
parent | 43c910680620dd4c8b91bd96e4aa13cc98547def (diff) |
Use Vector3 instead of 3 floats for CSGBox3D dimensions
Diffstat (limited to 'modules/csg/doc_classes')
-rw-r--r-- | modules/csg/doc_classes/CSGBox3D.xml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/modules/csg/doc_classes/CSGBox3D.xml b/modules/csg/doc_classes/CSGBox3D.xml index 492bf68c44..b1d0454b76 100644 --- a/modules/csg/doc_classes/CSGBox3D.xml +++ b/modules/csg/doc_classes/CSGBox3D.xml @@ -11,17 +11,11 @@ <methods> </methods> <members> - <member name="depth" type="float" setter="set_depth" getter="get_depth" default="2.0"> - Depth of the box measured from the center of the box. - </member> - <member name="height" type="float" setter="set_height" getter="get_height" default="2.0"> - Height of the box measured from the center of the box. - </member> <member name="material" type="Material" setter="set_material" getter="get_material"> The material used to render the box. </member> - <member name="width" type="float" setter="set_width" getter="get_width" default="2.0"> - Width of the box measured from the center of the box. + <member name="size" type="Vector3" setter="set_size" getter="get_size" default="Vector3( 2, 2, 2 )"> + The box's width, height and depth. </member> </members> <constants> |