aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/material_editor_plugin.cpp
diff options
context:
space:
mode:
authorFerenc Arn2016-10-18 15:50:21 -0500
committerFerenc Arn2017-01-03 17:41:04 -0600
commitbd7ba0b664fa98381db9ef8edb69ba211213d595 (patch)
tree8e313066ce55a3366cd6b972ff429372583cda28 /tools/editor/plugins/material_editor_plugin.cpp
parentf2e99826c0b1e8227644bfab0795d858c504d279 (diff)
downloadgodot-bd7ba0b664fa98381db9ef8edb69ba211213d595.tar.gz
godot-bd7ba0b664fa98381db9ef8edb69ba211213d595.tar.zst
godot-bd7ba0b664fa98381db9ef8edb69ba211213d595.zip
Diffstat (limited to 'tools/editor/plugins/material_editor_plugin.cpp')
-rw-r--r--tools/editor/plugins/material_editor_plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/plugins/material_editor_plugin.cpp b/tools/editor/plugins/material_editor_plugin.cpp
index 9c279fa96..3ef181813 100644
--- a/tools/editor/plugins/material_editor_plugin.cpp
+++ b/tools/editor/plugins/material_editor_plugin.cpp
@@ -129,8 +129,8 @@ MaterialEditor::MaterialEditor() {
viewport->add_child(box_instance);
Transform box_xform;
- box_xform.basis.rotate(Vector3(1,0,0),Math::deg2rad(-25));
- box_xform.basis = box_xform.basis * Matrix3().rotated(Vector3(0,1,0),Math::deg2rad(-25));
+ box_xform.basis.rotate(Vector3(1,0,0),Math::deg2rad(25));
+ box_xform.basis = box_xform.basis * Matrix3().rotated(Vector3(0,1,0),Math::deg2rad(25));
box_xform.basis.scale(Vector3(0.8,0.8,0.8));
box_instance->set_transform(box_xform);