mirror of
https://github.com/CrispyPin/ovr-utils.git
synced 2025-04-04 12:13:59 +02:00
74 lines
2.2 KiB
Text
74 lines
2.2 KiB
Text
[gd_scene load_steps=7 format=2]
|
|
|
|
[ext_resource path="res://overlay_scripts/main_menu.gd" type="Script" id=1]
|
|
[ext_resource path="res://styles/menu.theme" type="Theme" id=2]
|
|
[ext_resource path="res://ui/AddMenu.tscn" type="PackedScene" id=3]
|
|
[ext_resource path="res://icons/add.svg" type="Texture" id=4]
|
|
[ext_resource path="res://icons/move.svg" type="Texture" id=5]
|
|
[ext_resource path="res://icons/list.svg" type="Texture" id=6]
|
|
|
|
[node name="MainOverlay" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
theme = ExtResource( 2 )
|
|
script = ExtResource( 1 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="VSplitContainer" type="VSplitContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="Control" type="Control" parent="VSplitContainer"]
|
|
margin_right = 2048.0
|
|
margin_bottom = 1845.0
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Overlays" type="VBoxContainer" parent="VSplitContainer/Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
size_flags_vertical = 3
|
|
alignment = 2
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="AddMenu" parent="VSplitContainer/Control" instance=ExtResource( 3 )]
|
|
|
|
[node name="MainBar" type="HBoxContainer" parent="VSplitContainer"]
|
|
margin_top = 1857.0
|
|
margin_right = 2048.0
|
|
margin_bottom = 2048.0
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="ShowOverlays" type="Button" parent="VSplitContainer/MainBar"]
|
|
margin_right = 176.0
|
|
margin_bottom = 191.0
|
|
focus_mode = 0
|
|
toggle_mode = true
|
|
icon = ExtResource( 6 )
|
|
|
|
[node name="GrabMode" type="Button" parent="VSplitContainer/MainBar"]
|
|
margin_left = 180.0
|
|
margin_right = 356.0
|
|
margin_bottom = 191.0
|
|
focus_mode = 0
|
|
toggle_mode = true
|
|
icon = ExtResource( 5 )
|
|
|
|
[node name="AddOverlay" type="Button" parent="VSplitContainer/MainBar"]
|
|
margin_left = 360.0
|
|
margin_right = 536.0
|
|
margin_bottom = 191.0
|
|
focus_mode = 0
|
|
icon = ExtResource( 4 )
|
|
|
|
[connection signal="toggled" from="VSplitContainer/MainBar/ShowOverlays" to="." method="_on_ShowOverlays_toggled"]
|
|
[connection signal="toggled" from="VSplitContainer/MainBar/GrabMode" to="." method="_on_GrabMode_toggled"]
|
|
[connection signal="pressed" from="VSplitContainer/MainBar/AddOverlay" to="." method="_on_AddOverlay_pressed"]
|