mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-14 10:27:53 +01:00
Added text test scene
This commit is contained in:
parent
b400871e6d
commit
0c14a07fcc
6
All.tscn
6
All.tscn
@ -1,4 +1,4 @@
|
|||||||
[gd_scene load_steps=10 format=2]
|
[gd_scene load_steps=11 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://MainScenes/Control.tscn" type="PackedScene" id=1]
|
[ext_resource path="res://MainScenes/Control.tscn" type="PackedScene" id=1]
|
||||||
[ext_resource path="res://MainScenes/Spatial.tscn" type="PackedScene" id=2]
|
[ext_resource path="res://MainScenes/Spatial.tscn" type="PackedScene" id=2]
|
||||||
@ -9,6 +9,7 @@
|
|||||||
[ext_resource path="res://Rendering/Lights3D/Lights3D.tscn" type="PackedScene" id=7]
|
[ext_resource path="res://Rendering/Lights3D/Lights3D.tscn" type="PackedScene" id=7]
|
||||||
[ext_resource path="res://Rendering/Lights2D/Lights2D.tscn" type="PackedScene" id=8]
|
[ext_resource path="res://Rendering/Lights2D/Lights2D.tscn" type="PackedScene" id=8]
|
||||||
[ext_resource path="res://Physics/3D/Physics3D.tscn" type="PackedScene" id=9]
|
[ext_resource path="res://Physics/3D/Physics3D.tscn" type="PackedScene" id=9]
|
||||||
|
[ext_resource path="res://Text/Text.tscn" type="PackedScene" id=10]
|
||||||
|
|
||||||
[node name="All" type="Node"]
|
[node name="All" type="Node"]
|
||||||
script = null
|
script = null
|
||||||
@ -42,3 +43,6 @@ script = null
|
|||||||
|
|
||||||
[node name="Lights3D" parent="Rendering" instance=ExtResource( 7 )]
|
[node name="Lights3D" parent="Rendering" instance=ExtResource( 7 )]
|
||||||
script = null
|
script = null
|
||||||
|
|
||||||
|
[node name="Text" parent="." instance=ExtResource( 10 )]
|
||||||
|
script = null
|
||||||
|
@ -8,7 +8,7 @@ const PRINT_TIME_EVERY_SECONDS : int = 5
|
|||||||
var time_to_print_next_time : int = PRINT_TIME_EVERY_SECONDS
|
var time_to_print_next_time : int = PRINT_TIME_EVERY_SECONDS
|
||||||
var current_run_time : float = 0.0
|
var current_run_time : float = 0.0
|
||||||
|
|
||||||
var time_to_show: float = 6 # How long test works
|
var time_to_show: float = 20 # How long test works
|
||||||
|
|
||||||
var time_for_each_step : float = -1.0
|
var time_for_each_step : float = -1.0
|
||||||
|
|
||||||
@ -22,6 +22,7 @@ const alone_steps : Array = [
|
|||||||
"res://Physics/3D/Physics3D.tscn",
|
"res://Physics/3D/Physics3D.tscn",
|
||||||
"res://Rendering/Lights2D/Lights2D.tscn",
|
"res://Rendering/Lights2D/Lights2D.tscn",
|
||||||
"res://Rendering/Lights3D/Lights3D.tscn",
|
"res://Rendering/Lights3D/Lights3D.tscn",
|
||||||
|
"res://Text/Text.tscn",
|
||||||
]
|
]
|
||||||
|
|
||||||
# All scenes run in one step
|
# All scenes run in one step
|
||||||
|
18
Text/Label.gd
Normal file
18
Text/Label.gd
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
extends Label
|
||||||
|
|
||||||
|
const TIME : float = 0.3
|
||||||
|
var time_to_stop : float = TIME
|
||||||
|
var current_type : int = 0
|
||||||
|
|
||||||
|
func _process(delta: float) -> void:
|
||||||
|
time_to_stop -= delta
|
||||||
|
if time_to_stop < 0:
|
||||||
|
time_to_stop = TIME
|
||||||
|
|
||||||
|
current_type += 1
|
||||||
|
current_type %= 2
|
||||||
|
|
||||||
|
if current_type == 0:
|
||||||
|
set_text("ŚWIERSZCZ NAD GŻEGŻÓŁKĄ W ŻÓŁCI")
|
||||||
|
else:
|
||||||
|
text += "AQWAMARYNA"
|
9
Text/Label.tscn
Normal file
9
Text/Label.tscn
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[gd_scene load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://Text/Label.gd" type="Script" id=1]
|
||||||
|
|
||||||
|
[node name="Label" type="Label"]
|
||||||
|
margin_right = 83.0
|
||||||
|
margin_bottom = 14.0
|
||||||
|
text = "Stomatologia"
|
||||||
|
script = ExtResource( 1 )
|
18
Text/RichTextLabel.gd
Normal file
18
Text/RichTextLabel.gd
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
extends RichTextLabel
|
||||||
|
|
||||||
|
const TIME : float = 0.3
|
||||||
|
var time_to_stop : float = TIME
|
||||||
|
var current_type : int = 0
|
||||||
|
|
||||||
|
func _process(delta: float) -> void:
|
||||||
|
time_to_stop -= delta
|
||||||
|
if time_to_stop < 0:
|
||||||
|
time_to_stop = TIME
|
||||||
|
|
||||||
|
current_type += 1
|
||||||
|
current_type %= 2
|
||||||
|
|
||||||
|
if current_type == 0:
|
||||||
|
set_text("ŚWIERSZCZ NAD GŻEGŻÓŁKĄ W ŻÓŁCI, Świeci nad Źrebięciem w ciągu szeleszczącej burzy")
|
||||||
|
else:
|
||||||
|
text += "AQWAMARYNA JEST ZROBIONA Z KROMKI PO MAŚLE I NAD REDUNDANCJĄ TRZEBA ZROBIĆ DWIE ABY SIĘ NIE POŚLIZGNĄĆ"
|
15
Text/RichTextLabel.tscn
Normal file
15
Text/RichTextLabel.tscn
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
[gd_scene load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://Text/RichTextLabel.gd" type="Script" id=1]
|
||||||
|
|
||||||
|
[node name="RichTextLabel" type="RichTextLabel"]
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
bbcode_text = "Szyszka"
|
||||||
|
text = "Szyszka"
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_use_anchors_": false
|
||||||
|
}
|
882
Text/Text.tscn
Normal file
882
Text/Text.tscn
Normal file
@ -0,0 +1,882 @@
|
|||||||
|
[gd_scene load_steps=3 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://Text/RichTextLabel.tscn" type="PackedScene" id=1]
|
||||||
|
[ext_resource path="res://Text/Label.tscn" type="PackedScene" id=2]
|
||||||
|
|
||||||
|
[node name="Text" type="GridContainer"]
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
columns = 5
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_use_anchors_": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[node name="Label" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_right = 201.0
|
||||||
|
|
||||||
|
[node name="Label2" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_right = 406.0
|
||||||
|
|
||||||
|
[node name="Label3" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_right = 611.0
|
||||||
|
|
||||||
|
[node name="Label4" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_right = 816.0
|
||||||
|
|
||||||
|
[node name="Label5" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
|
||||||
|
[node name="Label6" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 32.0
|
||||||
|
|
||||||
|
[node name="Label7" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 32.0
|
||||||
|
|
||||||
|
[node name="Label8" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 32.0
|
||||||
|
|
||||||
|
[node name="Label9" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 32.0
|
||||||
|
|
||||||
|
[node name="Label10" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 32.0
|
||||||
|
|
||||||
|
[node name="Label11" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 36.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 50.0
|
||||||
|
|
||||||
|
[node name="Label12" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 36.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 50.0
|
||||||
|
|
||||||
|
[node name="Label13" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 36.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 50.0
|
||||||
|
|
||||||
|
[node name="Label14" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 36.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 50.0
|
||||||
|
|
||||||
|
[node name="Label15" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 36.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 50.0
|
||||||
|
|
||||||
|
[node name="Label16" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 54.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 68.0
|
||||||
|
|
||||||
|
[node name="Label17" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 54.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 68.0
|
||||||
|
|
||||||
|
[node name="Label18" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 54.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 68.0
|
||||||
|
|
||||||
|
[node name="Label19" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 54.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 68.0
|
||||||
|
|
||||||
|
[node name="Label20" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 54.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 68.0
|
||||||
|
|
||||||
|
[node name="Label21" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 72.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 86.0
|
||||||
|
|
||||||
|
[node name="Label22" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 72.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 86.0
|
||||||
|
|
||||||
|
[node name="Label23" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 72.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 86.0
|
||||||
|
|
||||||
|
[node name="Label24" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 72.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 86.0
|
||||||
|
|
||||||
|
[node name="Label25" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 72.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 86.0
|
||||||
|
|
||||||
|
[node name="Label26" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 90.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 104.0
|
||||||
|
|
||||||
|
[node name="Label27" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 90.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 104.0
|
||||||
|
|
||||||
|
[node name="Label28" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 90.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 104.0
|
||||||
|
|
||||||
|
[node name="Label29" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 90.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 104.0
|
||||||
|
|
||||||
|
[node name="Label30" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 90.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 104.0
|
||||||
|
|
||||||
|
[node name="Label31" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 108.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 122.0
|
||||||
|
|
||||||
|
[node name="Label32" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 108.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 122.0
|
||||||
|
|
||||||
|
[node name="Label33" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 108.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 122.0
|
||||||
|
|
||||||
|
[node name="Label34" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 108.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 122.0
|
||||||
|
|
||||||
|
[node name="Label35" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 108.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 122.0
|
||||||
|
|
||||||
|
[node name="Label36" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 126.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 140.0
|
||||||
|
|
||||||
|
[node name="Label37" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 126.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 140.0
|
||||||
|
|
||||||
|
[node name="Label38" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 126.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 140.0
|
||||||
|
|
||||||
|
[node name="Label39" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 126.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 140.0
|
||||||
|
|
||||||
|
[node name="Label40" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 126.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 140.0
|
||||||
|
|
||||||
|
[node name="Label41" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 144.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 158.0
|
||||||
|
|
||||||
|
[node name="Label42" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 144.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 158.0
|
||||||
|
|
||||||
|
[node name="Label43" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 144.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 158.0
|
||||||
|
|
||||||
|
[node name="Label44" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 144.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 158.0
|
||||||
|
|
||||||
|
[node name="Label45" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 144.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 158.0
|
||||||
|
|
||||||
|
[node name="Label46" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_top = 162.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 176.0
|
||||||
|
|
||||||
|
[node name="Label47" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 162.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 176.0
|
||||||
|
|
||||||
|
[node name="Label48" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 162.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 176.0
|
||||||
|
|
||||||
|
[node name="Label49" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 162.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 176.0
|
||||||
|
|
||||||
|
[node name="Label50" parent="." instance=ExtResource( 2 )]
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 162.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 176.0
|
||||||
|
|
||||||
|
[node name="RichTextLabel" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 180.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 218.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel2" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 180.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 218.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel3" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 180.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 218.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel4" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 180.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 218.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel5" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 180.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 218.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel6" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 222.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 260.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel7" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 222.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 260.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel8" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 222.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 260.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel9" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 222.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 260.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel10" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 222.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 260.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel11" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 264.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 302.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel12" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 264.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 302.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel13" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 264.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 302.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel14" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 264.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 302.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel15" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 264.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 302.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel16" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 306.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel17" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 306.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel18" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 306.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel19" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 306.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel20" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 306.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel21" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 348.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 386.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel22" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 348.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 386.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel23" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 348.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 386.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel24" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 348.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 386.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel25" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 348.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 386.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel26" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 390.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 428.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel27" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 390.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 428.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel28" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 390.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 428.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel29" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 390.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 428.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel30" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 390.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 428.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel31" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 432.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 470.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel32" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 432.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 470.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel33" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 432.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 470.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel34" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 432.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 470.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel35" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 432.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 470.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel36" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 474.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 512.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel37" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 474.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 512.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel38" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 474.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 512.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel39" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 474.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 512.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel40" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 474.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 512.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel41" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 516.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 554.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel42" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 516.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 554.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel43" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 516.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 554.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel44" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 516.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 554.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel45" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 516.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 554.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel46" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 558.0
|
||||||
|
margin_right = 201.0
|
||||||
|
margin_bottom = 596.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel47" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 205.0
|
||||||
|
margin_top = 558.0
|
||||||
|
margin_right = 406.0
|
||||||
|
margin_bottom = 596.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel48" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 410.0
|
||||||
|
margin_top = 558.0
|
||||||
|
margin_right = 611.0
|
||||||
|
margin_bottom = 596.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel49" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 615.0
|
||||||
|
margin_top = 558.0
|
||||||
|
margin_right = 816.0
|
||||||
|
margin_bottom = 596.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="RichTextLabel50" parent="." instance=ExtResource( 1 )]
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 820.0
|
||||||
|
margin_top = 558.0
|
||||||
|
margin_right = 1021.0
|
||||||
|
margin_bottom = 596.0
|
||||||
|
bbcode_text = "Roman
|
||||||
|
"
|
||||||
|
text = "Roman
|
||||||
|
"
|
Loading…
Reference in New Issue
Block a user