mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
d66c501b5c
In this commit: - Added notification labels that appear when the user does an action (for undoing, redoing and saving) - Fixed symmetry with custom brushes. - In Main.gd, current_save_path and current_export_path get cleared when the user creates a new drawing or opens one. v0.4 of Pixelorama is out! Check https://functionoverload590613498.wordpress.com/2019/11/13/pixelorama-v0-4-is-out/ for the full changelog.
18 lines
506 B
Plaintext
18 lines
506 B
Plaintext
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://Scripts/NotificationLabel.gd" type="Script" id=1]
|
|
|
|
[node name="NotificationLabel" type="Label"]
|
|
margin_right = 116.0
|
|
margin_bottom = 14.0
|
|
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
|
|
text = "Undo: Notification"
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="Tween" type="Tween" parent="."]
|
|
|
|
[node name="Timer" type="Timer" parent="."]
|
|
one_shot = true
|
|
autostart = true
|
|
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]
|