2020-09-22 20:25:45 +02:00
|
|
|
[gd_scene load_steps=5 format=2]
|
|
|
|
|
2020-10-26 19:15:47 +01:00
|
|
|
[ext_resource path="res://scenes/terminal.tscn" type="PackedScene" id=1]
|
|
|
|
[ext_resource path="res://scenes/repository.tscn" type="PackedScene" id=2]
|
2020-09-22 20:25:45 +02:00
|
|
|
[ext_resource path="res://styles/theme.tres" type="Theme" id=3]
|
2021-02-04 15:19:54 +01:00
|
|
|
[ext_resource path="res://scenes/sandbox.gd" type="Script" id=4]
|
2020-10-26 19:15:47 +01:00
|
|
|
|
2020-09-22 20:25:45 +02:00
|
|
|
[node name="Sandbox" type="Control"]
|
|
|
|
anchor_right = 1.0
|
|
|
|
anchor_bottom = 1.0
|
|
|
|
theme = ExtResource( 3 )
|
|
|
|
script = ExtResource( 4 )
|
|
|
|
|
|
|
|
[node name="Background" type="ColorRect" parent="."]
|
|
|
|
anchor_right = 1.0
|
|
|
|
anchor_bottom = 1.0
|
|
|
|
mouse_filter = 2
|
|
|
|
color = Color( 0.0705882, 0.0705882, 0.0705882, 1 )
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2020-09-29 18:36:24 +02:00
|
|
|
[node name="Columns" type="HSplitContainer" parent="."]
|
2020-09-22 20:25:45 +02:00
|
|
|
anchor_right = 1.0
|
|
|
|
anchor_bottom = 1.0
|
|
|
|
margin_left = 5.0
|
|
|
|
margin_top = 5.0
|
|
|
|
margin_right = -5.0
|
|
|
|
margin_bottom = -5.0
|
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
|
|
|
|
2020-09-29 18:36:24 +02:00
|
|
|
[node name="Repository" parent="Columns" instance=ExtResource( 2 )]
|
2020-09-22 20:25:45 +02:00
|
|
|
anchor_right = 0.0
|
|
|
|
anchor_bottom = 0.0
|
2020-09-22 21:56:22 +02:00
|
|
|
margin_right = 949.0
|
|
|
|
margin_bottom = 1070.0
|
2020-09-22 20:25:45 +02:00
|
|
|
size_flags_horizontal = 3
|
|
|
|
|
2020-09-29 18:36:24 +02:00
|
|
|
[node name="Terminal" parent="Columns" instance=ExtResource( 1 )]
|
2020-09-22 20:25:45 +02:00
|
|
|
anchor_right = 0.0
|
|
|
|
anchor_bottom = 0.0
|
2020-09-22 21:56:22 +02:00
|
|
|
margin_left = 961.0
|
|
|
|
margin_right = 1910.0
|
|
|
|
margin_bottom = 1070.0
|
2020-09-22 20:25:45 +02:00
|
|
|
size_flags_horizontal = 3
|
2022-08-18 12:19:13 +02:00
|
|
|
|
2020-10-01 10:07:36 +02:00
|
|
|
[connection signal="command_done" from="Columns/Terminal" to="." method="update_repo"]
|