skyscraperrising/project/assets/office.tscn
Anthony Foxclaw dff1abaf49 Room prices are no longer hardcoded
Office node now uses a generic room script with exported variables that control the price, income, ect...
2020-04-12 17:33:56 -04:00

15 lines
381 B
Text

[gd_scene load_steps=2 format=2]
[ext_resource path="res://src/room.gd" type="Script" id=1]
[node name="Office" type="Node2D"]
script = ExtResource( 1 )
room_cost = 1000
room_income = 500
room_expense = 350
room_capacity = 1
is_rentable = true
[node name="Rent" type="Timer" parent="."]
wait_time = 5.0
[connection signal="timeout" from="Rent" to="." method="_on_Rent_timeout"]