mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-15 18:13:15 +00:00
Compare commits
3 commits
654dcf30da
...
8eb871c074
Author | SHA1 | Date | |
---|---|---|---|
|
8eb871c074 | ||
|
6459151549 | ||
|
fe6efb0f1d |
5 changed files with 20 additions and 6 deletions
|
@ -3,16 +3,23 @@ Name=Pixelorama
|
||||||
GenericName=2D sprite editor
|
GenericName=2D sprite editor
|
||||||
GenericName[el]=Επεξεργαστής δισδιάστατων εικόνων
|
GenericName[el]=Επεξεργαστής δισδιάστατων εικόνων
|
||||||
GenericName[fr]=Éditeur de sprites 2D
|
GenericName[fr]=Éditeur de sprites 2D
|
||||||
|
GenericName[ru]=2Д редактор спрайтов
|
||||||
GenericName[pt_BR]=Editor de sprites 2D
|
GenericName[pt_BR]=Editor de sprites 2D
|
||||||
|
GenericName[uk]=2Д редактор спрайтів
|
||||||
GenericName[zh_CN]=2D 精灵编辑器
|
GenericName[zh_CN]=2D 精灵编辑器
|
||||||
Comment=Create and edit static or animated 2D sprites
|
Comment=Create and edit static or animated 2D sprites
|
||||||
Comment[el]=Δημιουργήστε και επεξεργαστείτε στατικές ή κινούμενες δισδιάστατες εικόνες
|
Comment[el]=Δημιουργήστε και επεξεργαστείτε στατικές ή κινούμενες δισδιάστατες εικόνες
|
||||||
Comment[fr]=Créez et modifiez des sprites 2D statiques ou animées
|
Comment[fr]=Créez et modifiez des sprites 2D statiques ou animées
|
||||||
|
Comment[ru]=Создавайте и редактируйте статичные и анимированные 2Д спрайты
|
||||||
Comment[pt_BR]=Crie e edite sprites 2D estáticos ou animados
|
Comment[pt_BR]=Crie e edite sprites 2D estáticos ou animados
|
||||||
|
Comment[uk]=Створюйте та редагуйте статичні та анімовані 2Д спрайти
|
||||||
Comment[zh_CN]=创建并编辑 2D 精灵图片或动画
|
Comment[zh_CN]=创建并编辑 2D 精灵图片或动画
|
||||||
Exec=pixelorama
|
Exec=pixelorama
|
||||||
Icon=pixelorama
|
Icon=pixelorama
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Graphics;2DGraphics;RasterGraphics;
|
Categories=Graphics;2DGraphics;RasterGraphics;
|
||||||
|
Keywords=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;
|
||||||
|
Keywords[ru]=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;пиксель;ретро;анимация;арт;изображение;2д;спрайт;графика;рисование;редактор;
|
||||||
|
Keywords[uk]=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;піксель;ретро;анімація;арт;зображення;2д;спрайт;графіка;малювання;редактор;
|
||||||
MimeType=image/pxo;image/png;image/bmp;image/vnd.radiance;image/jpeg;image/svg+xml;image/x-tga;image/webp;
|
MimeType=image/pxo;image/png;image/bmp;image/vnd.radiance;image/jpeg;image/svg+xml;image/x-tga;image/webp;
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 374 B |
Binary file not shown.
Before Width: | Height: | Size: 162 B After Width: | Height: | Size: 136 B |
|
@ -55,6 +55,7 @@ class Recorder:
|
||||||
dir.make_dir_recursive(save_directory)
|
dir.make_dir_recursive(save_directory)
|
||||||
project.removed.connect(recorder_panel.finalize_recording.bind(project))
|
project.removed.connect(recorder_panel.finalize_recording.bind(project))
|
||||||
project.undo_redo.version_changed.connect(capture_frame)
|
project.undo_redo.version_changed.connect(capture_frame)
|
||||||
|
recorder_panel.captured_label.text = ""
|
||||||
|
|
||||||
func _notification(what: int) -> void:
|
func _notification(what: int) -> void:
|
||||||
if what == NOTIFICATION_PREDELETE:
|
if what == NOTIFICATION_PREDELETE:
|
||||||
|
@ -100,6 +101,9 @@ func _on_project_switched() -> void:
|
||||||
initialize_recording()
|
initialize_recording()
|
||||||
start_button.set_pressed_no_signal(true)
|
start_button.set_pressed_no_signal(true)
|
||||||
Global.change_button_texturerect(start_button.get_child(0), "stop.png")
|
Global.change_button_texturerect(start_button.get_child(0), "stop.png")
|
||||||
|
captured_label.text = str(
|
||||||
|
"Saved: ", recorded_projects[Global.current_project].frames_captured
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
finalize_recording()
|
finalize_recording()
|
||||||
start_button.set_pressed_no_signal(false)
|
start_button.set_pressed_no_signal(false)
|
||||||
|
|
|
@ -40,15 +40,18 @@ mouse_default_cursor_shape = 2
|
||||||
toggle_mode = true
|
toggle_mode = true
|
||||||
|
|
||||||
[node name="TextureRect" type="TextureRect" parent="ScrollContainer/CenterContainer/GridContainer/Start"]
|
[node name="TextureRect" type="TextureRect" parent="ScrollContainer/CenterContainer/GridContainer/Start"]
|
||||||
layout_mode = 0
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
anchor_left = 0.5
|
anchor_left = 0.5
|
||||||
anchor_top = 0.5
|
anchor_top = 0.5
|
||||||
anchor_right = 0.5
|
anchor_right = 0.5
|
||||||
anchor_bottom = 0.5
|
anchor_bottom = 0.5
|
||||||
offset_left = -10.0
|
offset_left = -11.0
|
||||||
offset_top = -10.5
|
offset_top = -11.0
|
||||||
offset_right = 10.0
|
offset_right = 11.0
|
||||||
offset_bottom = 10.5
|
offset_bottom = 11.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
texture = ExtResource("1")
|
texture = ExtResource("1")
|
||||||
expand_mode = 1
|
expand_mode = 1
|
||||||
stretch_mode = 5
|
stretch_mode = 5
|
||||||
|
@ -74,7 +77,7 @@ offset_bottom = 10.5
|
||||||
texture = ExtResource("3")
|
texture = ExtResource("3")
|
||||||
stretch_mode = 5
|
stretch_mode = 5
|
||||||
|
|
||||||
[node name="OpenFolder" type="Button" parent="ScrollContainer/CenterContainer/GridContainer"]
|
[node name="OpenFolder" type="Button" parent="ScrollContainer/CenterContainer/GridContainer" groups=["UIButtons"]]
|
||||||
custom_minimum_size = Vector2(32, 32)
|
custom_minimum_size = Vector2(32, 32)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
tooltip_text = "Open Folder"
|
tooltip_text = "Open Folder"
|
||||||
|
|
Loading…
Add table
Reference in a new issue