mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
109 lines
4 KiB
Plaintext
109 lines
4 KiB
Plaintext
[gd_scene load_steps=6 format=3 uid="uid://c0nuukjakmai2"]
|
|
|
|
[ext_resource type="PackedScene" uid="uid://3pmb60gpst7b" path="res://src/UI/Nodes/TransparentChecker.tscn" id="1"]
|
|
[ext_resource type="Script" path="res://src/UI/Canvas/TileMode.gd" id="2"]
|
|
[ext_resource type="PackedScene" path="res://src/UI/Nodes/ValueSliderV2.tscn" id="2_ul2eq"]
|
|
[ext_resource type="Script" path="res://src/UI/Dialogs/TileModeOffsetsDialog.gd" id="3"]
|
|
|
|
[sub_resource type="CanvasItemMaterial" id="1"]
|
|
blend_mode = 4
|
|
|
|
[node name="TileModeOffsetsDialog" type="ConfirmationDialog"]
|
|
canvas_item_default_texture_filter = 0
|
|
title = "Tile Mode Offsets"
|
|
position = Vector2i(0, 36)
|
|
size = Vector2i(298, 536)
|
|
script = ExtResource("3")
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
|
offset_left = 8.0
|
|
offset_top = 8.0
|
|
offset_right = 290.0
|
|
offset_bottom = 487.0
|
|
|
|
[node name="TileModeOffsets" type="Label" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Tile Mode Offsets"
|
|
|
|
[node name="OptionsContainer" type="GridContainer" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
theme_override_constants/h_separation = 2
|
|
theme_override_constants/v_separation = 4
|
|
columns = 2
|
|
|
|
[node name="XBasisLabel" type="Label" parent="VBoxContainer/OptionsContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
text = "X-basis:"
|
|
|
|
[node name="XBasis" parent="VBoxContainer/OptionsContainer" instance=ExtResource("2_ul2eq")]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
allow_greater = true
|
|
allow_lesser = true
|
|
suffix_x = "px"
|
|
suffix_y = "px"
|
|
|
|
[node name="YBasisLabel" type="Label" parent="VBoxContainer/OptionsContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
text = "Y-basis:"
|
|
|
|
[node name="YBasis" parent="VBoxContainer/OptionsContainer" instance=ExtResource("2_ul2eq")]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
allow_greater = true
|
|
allow_lesser = true
|
|
suffix_x = "px"
|
|
suffix_y = "px"
|
|
|
|
[node name="MaskingLabel" type="Label" parent="VBoxContainer/OptionsContainer"]
|
|
layout_mode = 2
|
|
text = "Masking:"
|
|
|
|
[node name="Masking" type="CheckButton" parent="VBoxContainer/OptionsContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 0
|
|
|
|
[node name="Reset" type="Button" parent="VBoxContainer/OptionsContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
mouse_default_cursor_shape = 2
|
|
text = "Default"
|
|
|
|
[node name="Isometric" type="Button" parent="VBoxContainer/OptionsContainer"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
mouse_default_cursor_shape = 2
|
|
text = "Isometric"
|
|
|
|
[node name="AspectRatioContainer" type="AspectRatioContainer" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Preview" type="Control" parent="VBoxContainer/AspectRatioContainer"]
|
|
custom_minimum_size = Vector2(200, 200)
|
|
layout_mode = 2
|
|
|
|
[node name="TileMode" type="Node2D" parent="VBoxContainer/AspectRatioContainer/Preview"]
|
|
material = SubResource("1")
|
|
script = ExtResource("2")
|
|
|
|
[node name="TransparentChecker" parent="VBoxContainer/AspectRatioContainer/Preview" instance=ExtResource("1")]
|
|
show_behind_parent = true
|
|
layout_mode = 0
|
|
anchors_preset = 0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
|
|
[connection signal="about_to_popup" from="." to="." method="_on_TileModeOffsetsDialog_about_to_show"]
|
|
[connection signal="confirmed" from="." to="." method="_on_TileModeOffsetsDialog_confirmed"]
|
|
[connection signal="size_changed" from="." to="." method="_on_TileModeOffsetsDialog_size_changed"]
|
|
[connection signal="visibility_changed" from="." to="." method="_on_TileModeOffsetsDialog_visibility_changed"]
|
|
[connection signal="value_changed" from="VBoxContainer/OptionsContainer/XBasis" to="." method="_on_x_basis_value_changed"]
|
|
[connection signal="value_changed" from="VBoxContainer/OptionsContainer/YBasis" to="." method="_on_y_basis_value_changed"]
|
|
[connection signal="toggled" from="VBoxContainer/OptionsContainer/Masking" to="." method="_on_Masking_toggled"]
|
|
[connection signal="pressed" from="VBoxContainer/OptionsContainer/Reset" to="." method="_on_Reset_pressed"]
|
|
[connection signal="pressed" from="VBoxContainer/OptionsContainer/Isometric" to="." method="_on_isometric_pressed"]
|