first commit
This commit is contained in:
21
scenes/user_interface/ButtonNormal.tscn
Normal file
21
scenes/user_interface/ButtonNormal.tscn
Normal file
@ -0,0 +1,21 @@
|
||||
[gd_scene load_steps=6 format=2]
|
||||
|
||||
[ext_resource path="res://resources/user_interface/styles/btn_style_select.tres" type="StyleBox" id=1]
|
||||
[ext_resource path="res://resources/user_interface/styles/btn_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="ButtonNormal" 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 )
|
21
scenes/user_interface/ButtonSmall.tscn
Normal file
21
scenes/user_interface/ButtonSmall.tscn
Normal file
@ -0,0 +1,21 @@
|
||||
[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 )
|
8
scenes/user_interface/LabelBig.tscn
Normal file
8
scenes/user_interface/LabelBig.tscn
Normal file
@ -0,0 +1,8 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://resources/fonts/fontstyle_big.tres" type="DynamicFont" id=1]
|
||||
|
||||
[node name="LabelBig" type="Label"]
|
||||
margin_right = 40.0
|
||||
margin_bottom = 14.0
|
||||
custom_fonts/font = ExtResource( 1 )
|
8
scenes/user_interface/LabelNormal.tscn
Normal file
8
scenes/user_interface/LabelNormal.tscn
Normal file
@ -0,0 +1,8 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://resources/fonts/fontstyle_normal.tres" type="DynamicFont" id=1]
|
||||
|
||||
[node name="LabelNormal" type="Label"]
|
||||
margin_right = 40.0
|
||||
margin_bottom = 14.0
|
||||
custom_fonts/font = ExtResource( 1 )
|
13
scenes/user_interface/LineEditNormal.tscn
Normal file
13
scenes/user_interface/LineEditNormal.tscn
Normal file
@ -0,0 +1,13 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://resources/user_interface/styles/lineedit_style_deselect.tres" type="StyleBox" id=1]
|
||||
[ext_resource path="res://resources/user_interface/styles/lineedit_style_select.tres" type="StyleBox" id=2]
|
||||
[ext_resource path="res://resources/fonts/fontstyle_normal.tres" type="DynamicFont" id=3]
|
||||
|
||||
[node name="LineEditNormal" type="LineEdit"]
|
||||
margin_right = 58.0
|
||||
margin_bottom = 24.0
|
||||
custom_fonts/font = ExtResource( 3 )
|
||||
custom_styles/read_only = ExtResource( 1 )
|
||||
custom_styles/focus = ExtResource( 2 )
|
||||
custom_styles/normal = ExtResource( 1 )
|
Reference in New Issue
Block a user