22 lines
968 B
Plaintext
22 lines
968 B
Plaintext
|
[gd_scene load_steps=6 format=2]
|
||
|
|
||
|
[ext_resource path="res://resources/user_interface/styles/btn_small_style_select.tres" type="StyleBox" id=1]
|
||
|
[ext_resource path="res://resources/user_interface/styles/btn_small_style_deselect.tres" type="StyleBox" id=2]
|
||
|
[ext_resource path="res://resources/fonts/fontstyle_normal.tres" type="DynamicFont" id=3]
|
||
|
[ext_resource path="res://scripts/user_interface/ButtonCommon.cs" type="Script" id=4]
|
||
|
[ext_resource path="res://resources/user_interface/soundeffects/btn_click.wav" type="AudioStream" id=5]
|
||
|
|
||
|
[node name="ButtonSmall" type="Button"]
|
||
|
margin_right = 12.0
|
||
|
margin_bottom = 20.0
|
||
|
custom_fonts/font = ExtResource( 3 )
|
||
|
custom_styles/hover = ExtResource( 1 )
|
||
|
custom_styles/pressed = ExtResource( 1 )
|
||
|
custom_styles/focus = ExtResource( 1 )
|
||
|
custom_styles/disabled = ExtResource( 2 )
|
||
|
custom_styles/normal = ExtResource( 2 )
|
||
|
script = ExtResource( 4 )
|
||
|
|
||
|
[node name="AudioClick" type="AudioStreamPlayer" parent="."]
|
||
|
stream = ExtResource( 5 )
|