Reordering scene, and setup basic scene instance on main view
This commit is contained in:
committed by
Vaillant Jeremy
parent
fa4ec8baea
commit
74a5c3ac69
@@ -0,0 +1,4 @@
|
||||
extends Control
|
||||
|
||||
func _ready():
|
||||
$VBoxContainer/Label.text = tr("LOADING")
|
||||
@@ -0,0 +1,54 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/UI/loading/Loading.gd" type="Script" id=1]
|
||||
|
||||
[node name="Control" type="CenterContainer"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
script = ExtResource( 1 )
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||||
margin_left = 687.0
|
||||
margin_top = 432.0
|
||||
margin_right = 752.0
|
||||
margin_bottom = 468.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
alignment = 1
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="Label" type="Label" parent="VBoxContainer"]
|
||||
margin_right = 65.0
|
||||
margin_bottom = 14.0
|
||||
text = "Loading ..."
|
||||
align = 1
|
||||
|
||||
[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer"]
|
||||
margin_top = 18.0
|
||||
margin_right = 65.0
|
||||
margin_bottom = 18.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
|
||||
[node name="ProgressBar" type="ProgressBar" parent="VBoxContainer"]
|
||||
margin_top = 22.0
|
||||
margin_right = 65.0
|
||||
margin_bottom = 36.0
|
||||
max_value = 1.0
|
||||
step = 0.1
|
||||
rounded = true
|
||||
|
||||
[node name="ColorRect" type="ColorRect" parent="."]
|
||||
margin_left = 720.0
|
||||
margin_top = 450.0
|
||||
margin_right = 720.0
|
||||
margin_bottom = 450.0
|
||||
color = Color( 0, 0, 0, 1 )
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
Reference in New Issue
Block a user