mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
[gd_scene load_steps=5 format=2]
|
|
|
|
[ext_resource path="res://terminal.tscn" type="PackedScene" id=1]
|
|
[ext_resource path="res://repository.tscn" type="PackedScene" id=2]
|
|
[ext_resource path="res://styles/theme.tres" type="Theme" id=3]
|
|
[ext_resource path="res://sandbox.gd" type="Script" id=4]
|
|
|
|
[node name="Sandbox" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
theme = ExtResource( 3 )
|
|
script = ExtResource( 4 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[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
|
|
}
|
|
|
|
[node name="Columns" type="HSplitContainer" parent="."]
|
|
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
|
|
}
|
|
|
|
[node name="Repository" parent="Columns" instance=ExtResource( 2 )]
|
|
anchor_right = 0.0
|
|
anchor_bottom = 0.0
|
|
margin_right = 949.0
|
|
margin_bottom = 1070.0
|
|
size_flags_horizontal = 3
|
|
editable_path = true
|
|
|
|
[node name="Terminal" parent="Columns" instance=ExtResource( 1 )]
|
|
anchor_right = 0.0
|
|
anchor_bottom = 0.0
|
|
margin_left = 961.0
|
|
margin_right = 1910.0
|
|
margin_bottom = 1070.0
|
|
size_flags_horizontal = 3
|
|
[connection signal="command_done" from="Columns/Terminal" to="." method="update_repo"]
|