-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tscn
24 lines (20 loc) · 863 Bytes
/
main.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[gd_scene load_steps=2 format=3 uid="uid://b8yn7bk3tl7gl"]
[ext_resource type="Script" path="res://main.gd" id="1_nksdk"]
[node name="main" type="Node2D"]
script = ExtResource("1_nksdk")
[node name="FileDialog" type="FileDialog" parent="."]
disable_3d = true
title = "IMG2ANS - CHOOSE IMAGE WITH EGA PALETTE - TO CONVERT TO ANSI"
position = Vector2i(0, 36)
size = Vector2i(780, 800)
visible = true
ok_button_text = "CONVERT TO ANSI"
cancel_button_text = "CANCEL"
mode_overrides_title = false
file_mode = 0
access = 2
filters = PackedStringArray("*.png", "*.bmp", "*.jpg", "*.gif")
use_native_dialog = true
[connection signal="ready" from="." to="." method="_on_ready"]
[connection signal="canceled" from="FileDialog" to="." method="_on_file_dialog_canceled"]
[connection signal="file_selected" from="FileDialog" to="." method="_on_file_dialog_file_selected"]