skyscraperrising/project/src/world.tscn
Anthony Foxclaw 3308bddc6c Added income frequency
- 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
2020-04-12 20:06:52 -04:00

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"]