Improve the default size for 3D shapes (Box, Capsule, and Cylinder)

This commit is contained in:
Aaron Franke 2021-12-30 15:20:56 -08:00
parent dafadd73ac
commit 8cfd264148
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
15 changed files with 28 additions and 28 deletions

View file

@ -239,7 +239,7 @@ class CSGBox3D : public CSGPrimitive3D {
virtual CSGBrush *_build_brush() override;
Ref<Material> material;
Vector3 size = Vector3(2, 2, 2);
Vector3 size = Vector3(1, 1, 1);
protected:
static void _bind_methods();