Merge pull request #11 from jackaperkins/rotate_fix

Add button to turn on rotation animation in preview window
This commit is contained in:
Rodz Labs 2019-10-16 22:53:53 +02:00 committed by GitHub
commit 2b67c5a4f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 5 deletions

View File

@ -69,12 +69,12 @@ func _on_Preview2D_gui_input(ev : InputEvent):
preview_maximized = !preview_maximized
_on_Preview_resized()
func _on_Button_toggled(button_pressed):
func _on_Background_toggled(button_pressed):
emit_signal("show_background_preview", button_pressed)
func on_gui_input(event):
if event is InputEventMouseButton:
$MaterialPreview/Preview3d/ObjectRotate.stop()
$MaterialPreview/Preview3d/ObjectRotate.stop(false)
match event.button_index:
BUTTON_WHEEL_UP:
camera.translation.z *= 1.01 if event.shift else 1.1
@ -95,3 +95,10 @@ func on_gui_input(event):
camera_stand.rotate(camera_basis.y.normalized(), -motion.x)
elif event.button_mask & BUTTON_MASK_RIGHT:
camera_stand.rotate(camera_basis.z.normalized(), -motion.x)
func _on_Rotate_pressed():
if $MaterialPreview/Preview3d/ObjectRotate.is_playing():
$MaterialPreview/Preview3d/ObjectRotate.stop(false)
else:
$MaterialPreview/Preview3d/ObjectRotate.play("rotate")

View File

@ -64,12 +64,24 @@ text = "Epping Forest"
items = [ "Epping Forest", null, false, -1, null, "Moonless Golf", null, false, -1, null ]
selected = 0
[node name="Button" type="Button" parent="Config"]
[node name="Rotate" type="Button" parent="Config"]
margin_left = 348.0
margin_right = 368.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( -4, 7 )
hint_tooltip = "Show in main view"
size_flags_horizontal = 10
text = "R"
[node name="Background" type="Button" parent="Config"]
margin_left = 372.0
margin_right = 395.0
margin_bottom = 20.0
grow_horizontal = 2
grow_vertical = 2
rect_pivot_offset = Vector2( -4, 7 )
hint_tooltip = "Show in main view"
size_flags_horizontal = 10
size_flags_horizontal = 8
toggle_mode = true
text = "O"
@ -87,5 +99,6 @@ size_flags_vertical = 8
[connection signal="resized" from="." to="." method="_on_Preview_resized"]
[connection signal="item_selected" from="Config/Model" to="." method="_on_Model_item_selected"]
[connection signal="item_selected" from="Config/Environment" to="." method="_on_Environment_item_selected"]
[connection signal="toggled" from="Config/Button" to="." method="_on_Button_toggled"]
[connection signal="pressed" from="Config/Rotate" to="." method="_on_Rotate_pressed"]
[connection signal="toggled" from="Config/Background" to="." method="_on_Background_toggled"]
[connection signal="gui_input" from="Preview2D" to="." method="_on_Preview2D_gui_input"]