mirror of
https://github.com/tpawstdio/skyscraperrising.git
synced 2025-05-05 14:14:50 -04:00
- Added years and quarters to the interface - Created timer that increments the number of quarters in a year until it reaches four. After four, the quarter resets and the year increments. - Renamed TowerData to GameData
14 lines
438 B
Text
14 lines
438 B
Text
[gd_scene load_steps=3 format=2]
|
|
|
|
[ext_resource path="res://src/world.gd" type="Script" id=1]
|
|
[ext_resource path="res://src/gui.tscn" type="PackedScene" id=2]
|
|
|
|
[node name="World" type="Node"]
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="GUI" parent="." instance=ExtResource( 2 )]
|
|
|
|
[node name="Quarters" type="Timer" parent="."]
|
|
wait_time = 5.0
|
|
autostart = true
|
|
[connection signal="timeout" from="Quarters" to="." method="_on_Quarters_timeout"]
|