CozyPixelStudio/src/UI/CanvasPreviewContainer.gd
OverloadedOrama 7269b45fc5 Added play button and zoom slider for the small canvas preview
May also be a solution for the age old issue #25.
2020-08-02 00:59:00 +03:00

20 lines
751 B
GDScript

extends HBoxContainer
onready var canvas_preview = $PreviewContainer/PreviewViewportContainer/Viewport/CanvasPreview
onready var camera : Camera2D = $PreviewContainer/PreviewViewportContainer/Viewport/CameraPreview
onready var play_button : Button = $SettingsContainer/VBoxContainer/PlayButton
func _on_PreviewZoomSlider_value_changed(value : float) -> void:
camera.zoom = -Vector2(value, value)
camera.save_values_to_project()
func _on_PlayButton_toggled(button_pressed : bool) -> void:
if button_pressed:
canvas_preview.animation_timer.start()
Global.change_button_texturerect(play_button.get_child(0), "pause.png")
else:
canvas_preview.animation_timer.stop()
Global.change_button_texturerect(play_button.get_child(0), "play.png")