diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-03 16:59:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 16:59:07 +0100 |
commit | 45d5aa5d47b2a54c8a2bd50ef95b6a3151bfa24e (patch) | |
tree | b4a7a8fc46734521a34e963f2f18b5f5fc635ab3 /modules/csg/csg_shape.cpp | |
parent | c0daec389d654637885b7c1f1a650fa0f8cd4858 (diff) | |
parent | 8cfd2641481652b2588596f863217022b129817a (diff) |
Merge pull request #56365 from aaronfranke/default-shape-size
Diffstat (limited to 'modules/csg/csg_shape.cpp')
-rw-r--r-- | modules/csg/csg_shape.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/csg/csg_shape.cpp b/modules/csg/csg_shape.cpp index 4b36bca02a..fbddedbe55 100644 --- a/modules/csg/csg_shape.cpp +++ b/modules/csg/csg_shape.cpp @@ -1451,8 +1451,8 @@ Ref<Material> CSGCylinder3D::get_material() const { CSGCylinder3D::CSGCylinder3D() { // defaults - radius = 1.0; - height = 1.0; + radius = 0.5; + height = 2.0; sides = 8; cone = false; smooth_faces = true; @@ -1671,8 +1671,8 @@ Ref<Material> CSGTorus3D::get_material() const { CSGTorus3D::CSGTorus3D() { // defaults - inner_radius = 2.0; - outer_radius = 3.0; + inner_radius = 0.5; + outer_radius = 1.0; sides = 8; ring_sides = 6; smooth_faces = true; |