mirror of
https://port.numenaute.org/aleajactaest/khanat-client.git
synced 2024-11-10 01:10:05 +00:00
76 lines
2.2 KiB
Text
76 lines
2.2 KiB
Text
[gd_scene load_steps=6 format=2]
|
|
|
|
[ext_resource path="res://assets/interfaces/music_manager/play.png" type="Texture" id=1]
|
|
[ext_resource path="res://assets/interfaces/music_manager/previous.png" type="Texture" id=2]
|
|
[ext_resource path="res://assets/interfaces/music_manager/next.png" type="Texture" id=3]
|
|
[ext_resource path="res://assets/interfaces/music_manager/pause.png" type="Texture" id=4]
|
|
[ext_resource path="res://scenes/interfaces/music_manager/music_manager.gd" type="Script" id=5]
|
|
|
|
[node name="music_manager" type="WindowDialog"]
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
margin_left = -64.0
|
|
margin_top = -64.0
|
|
margin_right = 64.0
|
|
margin_bottom = 64.0
|
|
rect_min_size = Vector2( 256, 128 )
|
|
popup_exclusive = true
|
|
window_title = "Juke box"
|
|
resizable = true
|
|
script = ExtResource( 5 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="window_box" type="VBoxContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="controls_box" type="HBoxContainer" parent="window_box"]
|
|
margin_left = 26.0
|
|
margin_right = 102.0
|
|
margin_bottom = 16.0
|
|
size_flags_horizontal = 6
|
|
|
|
[node name="previous" type="TextureButton" parent="window_box/controls_box"]
|
|
margin_right = 16.0
|
|
margin_bottom = 16.0
|
|
texture_normal = ExtResource( 2 )
|
|
|
|
[node name="pause" type="TextureButton" parent="window_box/controls_box"]
|
|
margin_left = 20.0
|
|
margin_right = 36.0
|
|
margin_bottom = 16.0
|
|
texture_normal = ExtResource( 4 )
|
|
|
|
[node name="play" type="TextureButton" parent="window_box/controls_box"]
|
|
margin_left = 40.0
|
|
margin_right = 56.0
|
|
margin_bottom = 16.0
|
|
texture_normal = ExtResource( 1 )
|
|
|
|
[node name="next" type="TextureButton" parent="window_box/controls_box"]
|
|
margin_left = 60.0
|
|
margin_right = 76.0
|
|
margin_bottom = 16.0
|
|
texture_normal = ExtResource( 3 )
|
|
|
|
[node name="scroll_box" type="ScrollContainer" parent="window_box"]
|
|
margin_top = 20.0
|
|
margin_right = 128.0
|
|
margin_bottom = 128.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
|
|
[node name="musics_box" type="VBoxContainer" parent="window_box/scroll_box"]
|
|
margin_left = 64.0
|
|
margin_right = 64.0
|
|
size_flags_horizontal = 6
|
|
size_flags_vertical = 2
|
|
|
|
[node name="music" type="AudioStreamPlayer" parent="."]
|