Tax system

- New tax system
- Advisor window modeled after SC3k's
- Advisor start_dialogue() function is now connected to a SimEvent "advisor_message" signal
- Advisor windows are now autoloaded and no longer part of the core interface node
- Added 3D buildings from Micropolis repo
This commit is contained in:
Tony Bark 2021-05-22 04:12:18 -04:00
parent 49a1186115
commit e5505a3244
243 changed files with 3853 additions and 224 deletions

View file

@ -21,7 +21,6 @@ config/windows_native_icon="res://icon.ico"
[autoload]
CityData="*res://scripts/autoload/sim_data.gd"
SimData="*res://scripts/autoload/sim_data.gd"
SimEvents="*res://scripts/autoload/sim_events.gd"

57
scenes/AdvisorMeet.tscn Normal file
View file

@ -0,0 +1,57 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://sprites/avatars/zc.png" type="Texture" id=1]
[ext_resource path="res://sprites/avatars/kit.png" type="Texture" id=2]
[node name="AdvisorMeet" type="WindowDialog"]
anchor_left = 0.328125
anchor_top = 0.301667
anchor_right = 0.722656
anchor_bottom = 0.763333
window_title = "Meet"
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Advsiors" type="HBoxContainer" parent="."]
anchor_left = -0.00161441
anchor_top = -0.00235459
anchor_right = 0.998386
anchor_bottom = -0.00235459
margin_top = 4.0
margin_bottom = 104.0
alignment = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CityPlannerBtn" type="TextureButton" parent="Advsiors"]
margin_left = 100.0
margin_right = 200.0
margin_bottom = 100.0
texture_normal = ExtResource( 1 )
[node name="FinanceBtn" type="TextureButton" parent="Advsiors"]
margin_left = 204.0
margin_right = 304.0
margin_bottom = 100.0
texture_normal = ExtResource( 2 )
[node name="Tree" type="Tree" parent="."]
anchor_left = 0.0148515
anchor_top = 0.411552
anchor_right = 0.987624
anchor_bottom = 0.978339
margin_top = -7.62939e-06
__meta__ = {
"_edit_use_anchors_": true
}
[node name="HSeparator" type="HSeparator" parent="."]
anchor_left = 0.0170455
anchor_top = 0.380995
anchor_right = 0.985795
anchor_bottom = 0.397731
__meta__ = {
"_edit_use_anchors_": true
}

46
scenes/HintDialog.tscn Normal file
View file

@ -0,0 +1,46 @@
[gd_scene load_steps=2 format=2]
[sub_resource type="GDScript" id=1]
script/source = "extends WindowDialog
onready var avatar_texture = $Avatar
onready var desc_text = $Description
func hint_message(description: String, avatar: Texture, hint_title: String):
avatar_texture.texture = avatar
desc_text.text = description
"
[node name="HintDialog" type="WindowDialog"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -196.5
margin_top = -75.0
margin_right = 196.5
margin_bottom = 75.0
script = SubResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Avatar" type="TextureRect" parent="."]
anchor_left = 0.0305344
anchor_top = 0.0866667
anchor_right = 0.284987
anchor_bottom = 0.793333
rect_min_size = Vector2( 100, 106 )
stretch_mode = 5
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Description" type="RichTextLabel" parent="."]
anchor_left = 0.310433
anchor_top = 0.126667
anchor_right = 0.964377
anchor_bottom = 0.753333
__meta__ = {
"_edit_use_anchors_": true
}

142
scenes/TaxWindow.tscn Normal file
View file

@ -0,0 +1,142 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/tax_window.gd" type="Script" id=2]
[node name="TaxWindow" type="WindowDialog"]
anchor_left = 0.2809
anchor_top = 0.265
anchor_right = 0.631486
anchor_bottom = 0.446667
margin_left = -0.641174
margin_right = -0.641174
window_title = "RCI"
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": true
}
[node name="TaxSlidersCtr" type="VBoxContainer" parent="."]
anchor_left = 0.0167131
anchor_top = 0.0666667
anchor_right = 0.874652
anchor_bottom = 0.6
alignment = 1
__meta__ = {
"_edit_use_anchors_": true
}
[node name="ResCtr" type="HSplitContainer" parent="TaxSlidersCtr"]
margin_top = 1.0
margin_right = 308.0
margin_bottom = 17.0
dragger_visibility = 1
[node name="ResLbl" type="Label" parent="TaxSlidersCtr/ResCtr"]
margin_top = 1.0
margin_right = 71.0
margin_bottom = 15.0
text = "Residential"
align = 2
[node name="ResSlider" type="HSlider" parent="TaxSlidersCtr/ResCtr"]
margin_left = 83.0
margin_right = 308.0
margin_bottom = 16.0
min_value = 1.0
max_value = 10.0
value = 1.0
[node name="ComCtr" type="HSplitContainer" parent="TaxSlidersCtr"]
margin_top = 21.0
margin_right = 308.0
margin_bottom = 37.0
dragger_visibility = 1
[node name="ComLbl" type="Label" parent="TaxSlidersCtr/ComCtr"]
margin_top = 1.0
margin_right = 77.0
margin_bottom = 15.0
text = "Commerical"
align = 2
[node name="ComSlider" type="HSlider" parent="TaxSlidersCtr/ComCtr"]
margin_left = 89.0
margin_right = 308.0
margin_bottom = 16.0
min_value = 1.0
max_value = 10.0
value = 1.0
[node name="IndCtr" type="HSplitContainer" parent="TaxSlidersCtr"]
margin_top = 41.0
margin_right = 308.0
margin_bottom = 57.0
dragger_visibility = 1
[node name="IndLbl" type="Label" parent="TaxSlidersCtr/IndCtr"]
margin_top = 1.0
margin_right = 57.0
margin_bottom = 15.0
text = "Industral"
align = 2
[node name="IndSlider" type="HSlider" parent="TaxSlidersCtr/IndCtr"]
margin_left = 69.0
margin_right = 308.0
margin_bottom = 16.0
min_value = 1.0
max_value = 10.0
value = 1.0
[node name="PrecentCtr" type="VBoxContainer" parent="."]
anchor_left = 0.88329
anchor_top = 0.0790961
anchor_right = 0.991643
anchor_bottom = 0.555287
margin_bottom = -20.339
__meta__ = {
"_edit_use_anchors_": true
}
[node name="ResPctLbl" type="Label" parent="PrecentCtr"]
margin_right = 38.0
margin_bottom = 14.0
text = "1%"
[node name="ComPctLbl" type="Label" parent="PrecentCtr"]
margin_top = 18.0
margin_right = 38.0
margin_bottom = 32.0
text = "1%"
[node name="IndPctLbl" type="Label" parent="PrecentCtr"]
margin_top = 36.0
margin_right = 38.0
margin_bottom = 50.0
text = "1%"
[node name="IncomeCtr" type="HBoxContainer" parent="."]
anchor_left = 0.00835655
anchor_top = 0.642202
anchor_right = 0.97493
anchor_bottom = 0.834862
__meta__ = {
"_edit_use_anchors_": true
}
[node name="IcnomeLbl" type="Label" parent="IncomeCtr"]
margin_top = 3.0
margin_right = 90.0
margin_bottom = 17.0
text = "Income: $0/yr"
[node name="ExpensivesLbl" type="Label" parent="IncomeCtr"]
margin_left = 94.0
margin_top = 3.0
margin_right = 206.0
margin_bottom = 17.0
text = "Expensives: $0/yr"
[connection signal="value_changed" from="TaxSlidersCtr/ResCtr/ResSlider" to="." method="_on_ResSlider_value_changed"]
[connection signal="value_changed" from="TaxSlidersCtr/ComCtr/ComSlider" to="." method="_on_ComSlider_value_changed"]
[connection signal="value_changed" from="TaxSlidersCtr/IndCtr/IndSlider" to="." method="_on_IndSlider_value_changed"]

49
scenes/Windows.tscn Normal file
View file

@ -0,0 +1,49 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://scenes/advisors/CityPlanner.tscn" type="PackedScene" id=5]
[ext_resource path="res://scenes/DebugConsole.tscn" type="PackedScene" id=7]
[ext_resource path="res://scenes/AdvisorMeet.tscn" type="PackedScene" id=8]
[ext_resource path="res://scenes/advisors/FinanceAdvisor.tscn" type="PackedScene" id=9]
[ext_resource path="res://scripts/windows.gd" type="Script" id=10]
[ext_resource path="res://scenes/TaxWindow.tscn" type="PackedScene" id=11]
[node name="Windows" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 10 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Console" parent="." instance=ExtResource( 7 )]
anchor_left = 0.594727
anchor_top = 0.05
anchor_right = 0.985352
anchor_bottom = 0.3
margin_right = 0.0
margin_bottom = 0.0
rect_min_size = Vector2( 400, 150 )
resizable = true
[node name="TaxWindow" parent="." instance=ExtResource( 11 )]
anchor_left = 0.297863
anchor_top = 0.409167
anchor_right = 0.702137
anchor_bottom = 0.590833
margin_left = 0.0
margin_right = 0.0
margin_bottom = 3.05176e-05
[node name="AdvisorMeet" parent="." instance=ExtResource( 8 )]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -234.609
margin_top = -138.5
margin_right = 234.609
margin_bottom = 138.5
[node name="CityPlanner" parent="." instance=ExtResource( 5 )]
[node name="FinancialAdvisor" parent="." instance=ExtResource( 9 )]

View file

@ -1,24 +1,21 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/Adviser.gd" type="Script" id=2]
[ext_resource path="res://scripts/city_planner.gd" type="Script" id=1]
[ext_resource path="res://sprites/avatars/zc.png" type="Texture" id=2]
[sub_resource type="StreamTexture" id=1]
flags = 4
load_path = "res://.import/zc.png-c7ffa83bf28af8def63c79202632e383.stex"
[node name="AdvsiorNotice" type="AcceptDialog"]
[node name="CityPlanner" type="AcceptDialog"]
anchor_left = 0.293945
anchor_top = 0.303333
anchor_right = 0.706055
anchor_bottom = 0.696667
script = ExtResource( 2 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": true
}
dialogue_file = "res://dialog/cityplanner.json"
character = "Zack Casey"
rank = "City Planner"
avatar = SubResource( 1 )
avatar = ExtResource( 2 )
[node name="Container" type="HSplitContainer" parent="."]
anchor_right = 1.0
@ -53,5 +50,5 @@ align = 1
[node name="DescriptionLbl" type="RichTextLabel" parent="Container"]
margin_left = 112.0
margin_right = 406.0
margin_right = 406.001
margin_bottom = 192.0

View file

@ -0,0 +1,54 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://sprites/avatars/kit.png" type="Texture" id=1]
[ext_resource path="res://scripts/finance_advisor.gd" type="Script" id=2]
[node name="FinancialAdvisor" type="AcceptDialog"]
anchor_left = 0.293945
anchor_top = 0.303333
anchor_right = 0.706055
anchor_bottom = 0.696667
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": true
}
dialogue_file = "res://dialog/finacial.json"
character = "Kit Welsh"
rank = "Financial"
avatar = ExtResource( 1 )
[node name="Container" type="HSplitContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_top = 8.0
margin_right = -8.0
margin_bottom = -36.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Advisor" type="VBoxContainer" parent="Container"]
margin_right = 100.0
margin_bottom = 192.0
[node name="Avatar" type="TextureRect" parent="Container/Advisor"]
margin_right = 100.0
rect_min_size = Vector2( 100, 0 )
[node name="RankLbl" type="Label" parent="Container/Advisor"]
margin_top = 4.0
margin_right = 100.0
margin_bottom = 18.0
align = 1
[node name="NameLbl" type="Label" parent="Container/Advisor"]
margin_top = 22.0
margin_right = 100.0
margin_bottom = 36.0
align = 1
[node name="DescriptionLbl" type="RichTextLabel" parent="Container"]
margin_left = 112.0
margin_right = 406.001
margin_bottom = 192.0

View file

@ -1,6 +1,6 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://scripts/zone.gd" type="Script" id=1]
[ext_resource path="res://scripts/power_station.gd" type="Script" id=1]
[ext_resource path="res://sprites/coal.png" type="Texture" id=2]
[sub_resource type="RectangleShape2D" id=1]
@ -24,12 +24,11 @@ tracks/0/keys = {
"values": [ 1, 2, 3, 4, 6 ]
}
[node name="Power" type="KinematicBody2D"]
[node name="PowerStation" type="KinematicBody2D"]
input_pickable = true
script = ExtResource( 1 )
cost = 5000
income = 0
expense = 250
power_station = 0
[node name="Quarters" type="Timer" parent="."]
wait_time = 10.0

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=31 format=2]
[gd_scene load_steps=28 format=2]
[ext_resource path="res://scenes/Map.tscn" type="PackedScene" id=1]
[ext_resource path="res://scenes/advisors/Advise.tscn" type="PackedScene" id=2]
[ext_resource path="res://scenes/Windows.tscn" type="PackedScene" id=2]
[ext_resource path="res://scripts/city_status.gd" type="Script" id=3]
[ext_resource path="res://sprites/ui/icpolhi.png" type="Texture" id=4]
[ext_resource path="res://sprites/ui/iccom.png" type="Texture" id=5]
@ -20,7 +20,6 @@
[ext_resource path="res://sprites/ui/iccoalhi.png" type="Texture" id=18]
[ext_resource path="res://sprites/ui/iccoal.png" type="Texture" id=19]
[ext_resource path="res://scripts/game.gd" type="Script" id=20]
[ext_resource path="res://scenes/DebugConsole.tscn" type="PackedScene" id=21]
[ext_resource path="res://sprites/ui/icparkhi.png" type="Texture" id=22]
[ext_resource path="res://sprites/ui/icnuc.png" type="Texture" id=23]
[ext_resource path="res://sprites/ui/icpark.png" type="Texture" id=24]
@ -28,8 +27,6 @@
[ext_resource path="res://sprites/ui/icseap.png" type="Texture" id=26]
[ext_resource path="res://sprites/ui/icseaphi.png" type="Texture" id=27]
[ext_resource path="res://sprites/ui/icstad.png" type="Texture" id=28]
[ext_resource path="res://scripts/core_gui.gd" type="Script" id=29]
[ext_resource path="res://sprites/avatars/zc.png" type="Texture" id=30]
[node name="Game" type="Node2D"]
script = ExtResource( 20 )
@ -51,147 +48,34 @@ margin_left = -0.172424
margin_top = 2.77234
margin_right = -0.172424
margin_bottom = 2.77234
script = ExtResource( 29 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Console" parent="Controls/Core" instance=ExtResource( 21 )]
anchor_left = 0.597656
anchor_top = 0.0500001
anchor_right = 0.988281
anchor_bottom = 0.300001
margin_right = 0.0
margin_bottom = 0.0
rect_min_size = Vector2( 400, 150 )
resizable = true
[node name="Windows" parent="Controls/Core" instance=ExtResource( 2 )]
anchor_bottom = 0.835002
margin_bottom = -3.05176e-05
[node name="AdvsiorNotice" parent="Controls/Core" instance=ExtResource( 2 )]
avatar = ExtResource( 30 )
[node name="StatusPanel" type="Panel" parent="Controls/Core"]
anchor_left = 0.52832
anchor_top = 0.836668
anchor_right = 0.640625
anchor_bottom = 1.01
[node name="ControlPanel" type="Panel" parent="Controls/Core"]
anchor_left = 0.00195312
anchor_top = 0.828335
anchor_right = 1.00684
anchor_bottom = 1.00834
margin_bottom = -2.0
__meta__ = {
"_edit_use_anchors_": true
}
[node name="StatusCtr" type="CenterContainer" parent="Controls/Core/StatusPanel"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = 1.65512
margin_bottom = 1.65512
__meta__ = {
"_edit_use_anchors_": false
}
[node name="InfoBox" type="VBoxContainer" parent="Controls/Core/StatusPanel/StatusCtr"]
margin_left = 24.0
margin_top = 25.0
margin_right = 90.0
margin_bottom = 75.0
alignment = 1
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CityNameLbl" type="Label" parent="Controls/Core/StatusPanel/StatusCtr/InfoBox"]
margin_right = 66.0
margin_bottom = 14.0
text = "City Name"
align = 1
[node name="YearLbl" type="Label" parent="Controls/Core/StatusPanel/StatusCtr/InfoBox"]
margin_top = 18.0
margin_right = 66.0
margin_bottom = 32.0
text = "Y1980"
align = 1
[node name="Money" type="HBoxContainer" parent="Controls/Core/StatusPanel/StatusCtr/InfoBox"]
margin_top = 36.0
margin_right = 66.0
margin_bottom = 50.0
alignment = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CurrencyLbl" type="Label" parent="Controls/Core/StatusPanel/StatusCtr/InfoBox/Money"]
margin_left = 23.0
margin_right = 30.0
margin_bottom = 14.0
text = "§"
[node name="MoneyLbl" type="Label" parent="Controls/Core/StatusPanel/StatusCtr/InfoBox/Money"]
margin_left = 34.0
margin_right = 42.0
margin_bottom = 14.0
text = "0"
[node name="BuyPanel" type="Panel" parent="Controls/Core"]
anchor_left = 1.0
anchor_top = 1.00667
anchor_right = 1.00488
anchor_bottom = 1.00667
margin_left = -370.0
margin_top = -101.999
margin_right = -0.000244141
margin_bottom = 0.00109863
[node name="Tabs" type="TabContainer" parent="Controls/Core/ControlPanel"]
anchor_left = 0.00485909
anchor_top = 0.0471698
anchor_right = 0.995141
anchor_bottom = 0.971698
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Tabs" type="TabContainer" parent="Controls/Core/BuyPanel"]
anchor_left = 0.00144509
anchor_top = -0.0294118
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = -2.38419e-07
__meta__ = {
"_edit_use_anchors_": true
}
[node name="Zones" type="Tabs" parent="Controls/Core/BuyPanel/Tabs"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
[node name="ZonesCtr" type="HBoxContainer" parent="Controls/Core/BuyPanel/Tabs/Zones"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ResBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Zones/ZonesCtr"]
margin_right = 34.0
margin_bottom = 69.0
texture_normal = ExtResource( 9 )
texture_pressed = ExtResource( 10 )
[node name="ComBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Zones/ZonesCtr"]
margin_left = 38.0
margin_right = 72.0
margin_bottom = 69.0
texture_normal = ExtResource( 5 )
texture_pressed = ExtResource( 8 )
[node name="IndBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Zones/ZonesCtr"]
margin_left = 76.0
margin_right = 110.0
margin_bottom = 69.0
texture_normal = ExtResource( 13 )
texture_pressed = ExtResource( 12 )
[node name="Small" type="Tabs" parent="Controls/Core/BuyPanel/Tabs"]
[node name="Zones" type="Tabs" parent="Controls/Core/ControlPanel/Tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
@ -200,35 +84,85 @@ margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
[node name="SmallCtr" type="HBoxContainer" parent="Controls/Core/BuyPanel/Tabs/Small"]
[node name="CenterZones" type="CenterContainer" parent="Controls/Core/ControlPanel/Tabs/Zones"]
anchor_right = 1.0
anchor_bottom = 1.41667
margin_bottom = -10.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ZonesCtr" type="HBoxContainer" parent="Controls/Core/ControlPanel/Tabs/Zones/CenterZones"]
margin_left = 450.0
margin_top = 5.0
margin_right = 560.0
margin_bottom = 55.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ResBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Zones/CenterZones/ZonesCtr"]
margin_right = 34.0
margin_bottom = 50.0
texture_normal = ExtResource( 9 )
texture_pressed = ExtResource( 10 )
[node name="ComBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Zones/CenterZones/ZonesCtr"]
margin_left = 38.0
margin_right = 72.0
margin_bottom = 50.0
texture_normal = ExtResource( 5 )
texture_pressed = ExtResource( 8 )
[node name="IndBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Zones/CenterZones/ZonesCtr"]
margin_left = 76.0
margin_right = 110.0
margin_bottom = 50.0
texture_normal = ExtResource( 13 )
texture_pressed = ExtResource( 12 )
[node name="Small" type="Tabs" parent="Controls/Core/ControlPanel/Tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
[node name="CenterSmall" type="CenterContainer" parent="Controls/Core/ControlPanel/Tabs/Small"]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="SmallCtr" type="HBoxContainer" parent="Controls/Core/ControlPanel/Tabs/Small/CenterSmall"]
margin_left = 450.0
margin_top = 13.0
margin_right = 560.0
margin_bottom = 47.0
__meta__ = {
"_edit_use_anchors_": true
}
[node name="PoliceBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Small/SmallCtr"]
[node name="PoliceBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Small/CenterSmall/SmallCtr"]
margin_right = 34.0
margin_bottom = 34.0
texture_normal = ExtResource( 4 )
texture_pressed = ExtResource( 16 )
[node name="FireBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Small/SmallCtr"]
[node name="FireBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Small/CenterSmall/SmallCtr"]
margin_left = 38.0
margin_right = 72.0
margin_bottom = 34.0
texture_normal = ExtResource( 6 )
texture_pressed = ExtResource( 11 )
[node name="ParkBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Small/SmallCtr"]
[node name="ParkBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Small/CenterSmall/SmallCtr"]
margin_left = 76.0
margin_right = 110.0
margin_bottom = 34.0
texture_normal = ExtResource( 24 )
texture_pressed = ExtResource( 22 )
[node name="Large" type="Tabs" parent="Controls/Core/BuyPanel/Tabs"]
[node name="Large" type="Tabs" parent="Controls/Core/ControlPanel/Tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
@ -237,41 +171,49 @@ margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
[node name="LargeCtr" type="HBoxContainer" parent="Controls/Core/BuyPanel/Tabs/Large"]
[node name="CenterLarge" type="CenterContainer" parent="Controls/Core/ControlPanel/Tabs/Large"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TextureButton" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Large/LargeCtr"]
[node name="LargeCtr" type="HBoxContainer" parent="Controls/Core/ControlPanel/Tabs/Large/CenterLarge"]
margin_left = 415.0
margin_top = 9.0
margin_right = 595.0
margin_bottom = 51.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TextureButton" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Large/CenterLarge/LargeCtr"]
margin_right = 42.0
margin_bottom = 69.0
margin_bottom = 42.0
texture_normal = ExtResource( 28 )
[node name="TextureButton2" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Large/LargeCtr"]
[node name="TextureButton2" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Large/CenterLarge/LargeCtr"]
margin_left = 46.0
margin_right = 88.0
margin_bottom = 69.0
margin_bottom = 42.0
texture_normal = ExtResource( 26 )
texture_pressed = ExtResource( 27 )
[node name="NuclearBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Large/LargeCtr"]
[node name="NuclearBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Large/CenterLarge/LargeCtr"]
margin_left = 92.0
margin_right = 134.0
margin_bottom = 69.0
margin_bottom = 42.0
texture_normal = ExtResource( 23 )
texture_pressed = ExtResource( 25 )
[node name="CoalBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Large/LargeCtr"]
[node name="CoalBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Large/CenterLarge/LargeCtr"]
margin_left = 138.0
margin_right = 180.0
margin_bottom = 69.0
margin_bottom = 42.0
texture_normal = ExtResource( 19 )
texture_pressed = ExtResource( 18 )
[node name="Tools" type="Tabs" parent="Controls/Core/BuyPanel/Tabs"]
visible = false
[node name="Tools" type="Tabs" parent="Controls/Core/ControlPanel/Tabs"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
@ -279,29 +221,97 @@ margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
[node name="ToolsCtr" type="HBoxContainer" parent="Controls/Core/BuyPanel/Tabs/Tools"]
anchor_right = 1.33228
anchor_bottom = 2.83333
[node name="CenterTools" type="CenterContainer" parent="Controls/Core/ControlPanel/Tabs/Tools"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ToolsCtr" type="HBoxContainer" parent="Controls/Core/ControlPanel/Tabs/Tools/CenterTools"]
margin_left = 469.0
margin_top = 13.0
margin_right = 541.0
margin_bottom = 47.0
__meta__ = {
"_edit_use_anchors_": true
}
[node name="InfoBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Tools/ToolsCtr"]
[node name="InfoBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Tools/CenterTools/ToolsCtr"]
margin_right = 34.0
margin_bottom = 68.0
margin_bottom = 34.0
texture_normal = ExtResource( 15 )
texture_pressed = ExtResource( 14 )
[node name="BulldozeBtn" type="TextureButton" parent="Controls/Core/BuyPanel/Tabs/Tools/ToolsCtr"]
[node name="BulldozeBtn" type="TextureButton" parent="Controls/Core/ControlPanel/Tabs/Tools/CenterTools/ToolsCtr"]
margin_left = 38.0
margin_right = 72.0
margin_bottom = 68.0
margin_bottom = 34.0
texture_normal = ExtResource( 17 )
texture_pressed = ExtResource( 7 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="StatCtr" type="HBoxContainer" parent="Controls/Core/ControlPanel"]
anchor_left = 0.0136054
anchor_top = 0.0571429
anchor_right = 0.312925
anchor_bottom = 0.214286
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": true
}
[node name="CityNameLbl" type="Label" parent="Controls/Core/ControlPanel/StatCtr"]
margin_top = 1.0
margin_right = 66.0
margin_bottom = 15.0
text = "City Name"
align = 1
[node name="YearLbl" type="Label" parent="Controls/Core/ControlPanel/StatCtr"]
margin_left = 70.0
margin_top = 1.0
margin_right = 109.0
margin_bottom = 15.0
text = "Y1980"
align = 1
[node name="BudgetLbl" type="Label" parent="Controls/Core/ControlPanel/StatCtr"]
margin_left = 113.0
margin_top = 1.0
margin_right = 128.0
margin_bottom = 15.0
text = "§0"
align = 1
[node name="ButtonCtr" type="HBoxContainer" parent="Controls/Core/ControlPanel"]
anchor_left = 0.733722
anchor_top = 0.0522911
anchor_right = 0.987366
anchor_bottom = 0.195148
margin_top = -0.906677
margin_bottom = 3.95047
alignment = 2
__meta__ = {
"_edit_use_anchors_": true
}
[node name="TaxBtn" type="Button" parent="Controls/Core/ControlPanel/ButtonCtr"]
margin_left = 157.0
margin_right = 190.0
margin_bottom = 20.0
text = "RCI"
[node name="AdvsiorBtn" type="Button" parent="Controls/Core/ControlPanel/ButtonCtr"]
margin_left = 194.0
margin_right = 261.0
margin_bottom = 20.0
text = "Advisors"
[connection signal="timeout" from="Quarters" to="." method="_on_Quarters_timeout"]
[connection signal="pressed" from="Controls/Core/BuyPanel/Tabs/Zones/ZonesCtr/ResBtn" to="Map" method="_on_ResBtn_pressed"]
[connection signal="pressed" from="Controls/Core/BuyPanel/Tabs/Large/LargeCtr/CoalBtn" to="Map" method="_on_CoalBtn_pressed"]
[connection signal="pressed" from="Controls/Core/ControlPanel/Tabs/Zones/CenterZones/ZonesCtr/ResBtn" to="Map" method="_on_ResBtn_pressed"]
[connection signal="pressed" from="Controls/Core/ControlPanel/Tabs/Large/CenterLarge/LargeCtr/CoalBtn" to="Map" method="_on_CoalBtn_pressed"]
[connection signal="pressed" from="Controls/Core/ControlPanel/ButtonCtr/TaxBtn" to="Controls/Core/Windows" method="_on_TaxBtn_pressed"]
[connection signal="pressed" from="Controls/Core/ControlPanel/ButtonCtr/AdvsiorBtn" to="Controls/Core/Windows" method="_on_AdvsiorBtn_pressed"]

View file

@ -3,10 +3,8 @@ extends KinematicBody2D
signal grabbed
export var cost: int = 10000
export var income: int
export var expense: int
enum IsPowerStation {TRUE, FALSE}
export(IsPowerStation) var power_station = IsPowerStation.FALSE
export var income: int = 100
export var expense: int = 0
onready var zone = $Sprite
onready var quarters = $Quarters
@ -17,21 +15,18 @@ var grabbed_offset = Vector2()
func _ready():
SimEvents.connect("budget", self, "_get_budget")
SimEvents.connect("has_power", self, "_power_zone")
connect("grabbed", self, "_grab_zone")
func _input(event):
func _drag_drop(event):
if event is InputEventMouseButton and can_grab:
# Disable grabbing
can_grab = false
grabbed_offset = position - get_global_mouse_position()
# Substract from the player's budget
# Substract from the player's budget and disable grabbing
if SimData.budget >= cost:
SimData.budget -= cost
if power_station == IsPowerStation.TRUE:
SimEvents.emit_signal("has_power")
can_grab = false
grabbed_offset = position - get_global_mouse_position()
func _input(event):
_drag_drop(event)
func _process(delta):
if can_grab:
@ -52,13 +47,13 @@ func _animante_sprite(animante: bool = true):
func _grab_zone():
can_grab = true
func _power_zone():
SimData.has_power = true
func _get_budget():
if SimData.budget >= expense:
if SimData.budget >= expense and SimData.has_power:
SimData.budget -= expense
SimData.expenses = expense
if SimData.budget >= income:
SimData.budget += income
if SimData.has_power:
var total_income = SimData.res_tax * income
SimData.budget += total_income
SimData.res_income = total_income

View file

@ -5,7 +5,6 @@ export(String, FILE, "*.json") var dialogue_file
export var character: String
export var rank: String
export(Texture) var avatar
export var dialog = 0
var dialogue_keys = []
var dialogue_name = ""
@ -16,19 +15,20 @@ onready var rank_label = $Container/Advisor/RankLbl
onready var name_label = $Container/Advisor/NameLbl
onready var description_label = $Container/DescriptionLbl
func start_dialogue():
index_dialogue()
description_label.text = dialogue_keys[dialog].text
window_title = dialogue_keys[dialog].name
func _start_dialogue(message):
_load_dialogue(dialogue_file)
_index_dialogue()
description_label.text = dialogue_keys[message].text
window_title = dialogue_keys[message].name
show()
func index_dialogue():
var dialogue = load_dialogue(dialogue_file)
func _index_dialogue():
var dialogue = _load_dialogue(dialogue_file)
dialogue_keys.clear()
for key in dialogue:
dialogue_keys.append(dialogue[key])
func load_dialogue(file_path):
func _load_dialogue(file_path):
var file = File.new()
if file.file_exists(file_path):
file.open(file_path, file.READ)
@ -36,8 +36,6 @@ func load_dialogue(file_path):
return dialogue
func _ready():
load_dialogue(dialogue_file)
start_dialogue()
avatar_texture.texture = avatar
name_label.text = character
rank_label.text = rank

View file

@ -1,21 +1,29 @@
extends Node
# Hard-coded for now
var city_name: String = "Furtropolis"
var city_name: String = "Furtropolis" # Hard-coded, for now
var year: int = 1980
var prev_quarter: int
var quarter: int = 1
var population: int = 0
var news_ticker: String
var budget: int = 20000
var prev_budget: int
var expenses: int
var power_grid: int
const currency: String = "§"
var power_grid: int # Number of power stations in the area. Helps provide redundancies.
var power_capacity: int
var current_power_cap: int
var prev_power_cap: int
var has_power: bool
var res_tax: int
var comm_tax: int
var indust_tax: int
var res_tax: int = 1
var comm_tax: int = 1
var indust_tax: int = 1
var res_income: int
var comm_income: int
var ind_income: int
var fire_tax: int
var police_tax: int

View file

@ -3,3 +3,5 @@ extends Node
signal has_power
signal budget
signal game_speed
signal city_planner(message)
signal financial_advisor(message)

4
scripts/city_planner.gd Normal file
View file

@ -0,0 +1,4 @@
extends "res://scripts/advisor_window.gd"
func _ready():
SimEvents.connect("city_planner", self, "_start_dialogue")

View file

@ -1,10 +1,10 @@
extends BoxContainer
extends HBoxContainer
onready var city_name = $CityNameLbl
onready var money = $Money/MoneyLbl
onready var budget = $BudgetLbl
onready var year = $YearLbl
func _process(delta):
city_name.text = SimData.city_name
money.text = str(SimData.budget)
budget.text = SimData.currency + str(SimData.budget)
year.text = "Y" + str(SimData.year)

View file

@ -1,8 +0,0 @@
extends Control
onready var debug_console = $Console
onready var advisor = $AdvsiorNotice
func _process(delta):
if Input.is_action_pressed("ui_cheats"):
debug_console.show()

View file

@ -0,0 +1,4 @@
extends "res://scripts/advisor_window.gd"
func _ready():
SimEvents.connect("financial_advisor", self, "_start_dialogue")

View file

@ -37,13 +37,13 @@ func make_water():
func _on_ResBtn_pressed():
var new_zone = preload("res://scenes/zones/Zone.tscn")
var new_zone = preload("res://scenes/deparments/Zone.tscn")
var instance = new_zone.instance()
add_child(instance)
instance.emit_signal("grabbed")
func _on_CoalBtn_pressed():
var new_zone = preload("res://scenes/zones/Coal.tscn")
var new_zone = preload("res://scenes/deparments/CoalPlant.tscn")
var instance = new_zone.instance()
add_child(instance)
instance.emit_signal("grabbed")

16
scripts/power_station.gd Normal file
View file

@ -0,0 +1,16 @@
extends "res://scripts/zone.gd"
func _ready():
SimEvents.connect("has_power", self, "_power_zones")
func _power_zones():
SimData.power_grid += 1
if SimData.power_grid <= 1:
SimData.has_power = true
func _input(event):
_drag_drop(event)
if can_grab == false:
SimEvents.emit_signal("has_power")

43
scripts/tax_window.gd Normal file
View file

@ -0,0 +1,43 @@
extends WindowDialog
onready var res_slider = $TaxSlidersCtr/ResCtr/ResSlider
onready var com_slider = $TaxSlidersCtr/ComCtr/ComSlider
onready var ind_slider = $TaxSlidersCtr/IndCtr/IndSlider
onready var res_rate = $PrecentCtr/ResPctLbl
onready var com_rate = $PrecentCtr/ComPctLbl
onready var ind_rate = $PrecentCtr/IndPctLbl
onready var annual_income = $IncomeCtr/IcnomeLbl
func _ready():
if SimData.res_tax >= 0:
res_slider.value = SimData.res_tax
res_rate.text = str(SimData.res_tax) + "%"
if SimData.res_tax >= 0:
com_slider.value = SimData.comm_tax
com_rate.text = str(SimData.comm_tax) + "%"
if SimData.indust_tax >= 0:
ind_slider.value = SimData.indust_tax
ind_rate.text = str(SimData.indust_tax) + "%"
func _process(delta):
var total_income = int(SimData.res_income + SimData.comm_income + SimData.ind_income)
if total_income >= 1:
annual_income.text = "Income: " + SimData.currency + str(total_income) + "/yr"
func _on_ResSlider_value_changed(value):
SimData.res_tax = int(value)
res_rate.text = str(value) + "%"
func _on_ComSlider_value_changed(value):
SimData.comm_tax = int(value)
com_rate.text = str(value) + "%"
func _on_IndSlider_value_changed(value):
SimData.indust_tax = int(value)
ind_rate.text = str(value) + "%"

18
scripts/windows.gd Normal file
View file

@ -0,0 +1,18 @@
extends Control
onready var debug_console = $Console
onready var tax_window = $TaxWindow
onready var advsior_meet_window = $AdvisorMeet
func _ready():
SimEvents.emit_signal("city_planner", 0)
func _process(delta):
if Input.is_action_pressed("ui_cheats"):
debug_console.show()
func _on_TaxBtn_pressed():
tax_window.show()
func _on_AdvsiorBtn_pressed():
advsior_meet_window.show()

BIN
sprites/3d/church/bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg.png-7114d8ab4a7ff1b488fcc55d633616ad.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/church/bldg.png"
dest_files=[ "res://.import/bldg.png-7114d8ab4a7ff1b488fcc55d633616ad.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/church/church.blend Executable file

Binary file not shown.

BIN
sprites/3d/church/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-a57a1b72c57be6d6d7e0a705f589ddf6.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/church/turf.png"
dest_files=[ "res://.import/turf.png-a57a1b72c57be6d6d7e0a705f589ddf6.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/coal/coal.blend Executable file

Binary file not shown.

BIN
sprites/3d/coal/lev1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/lev1.png-7d39d207cc04810b3f53e502a727e861.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/coal/lev1.png"
dest_files=[ "res://.import/lev1.png-7d39d207cc04810b3f53e502a727e861.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/coal/lev2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/lev2.png-f0d0f636e75840b20d79e6cb60217696.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/coal/lev2.png"
dest_files=[ "res://.import/lev2.png-f0d0f636e75840b20d79e6cb60217696.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/coal/smokestack.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/smokestack.png-a47a54f5592db229cf2f635a855ddbff.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/coal/smokestack.png"
dest_files=[ "res://.import/smokestack.png-a47a54f5592db229cf2f635a855ddbff.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/coal/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-77ec19005a6c25f738aabfadfa29795d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/coal/turf.png"
dest_files=[ "res://.import/turf.png-77ec19005a6c25f738aabfadfa29795d.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com01/bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 666 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg.png-2a65adfa7d7d76b11e8891c4118d2460.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com01/bldg.png"
dest_files=[ "res://.import/bldg.png-2a65adfa7d7d76b11e8891c4118d2460.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

Binary file not shown.

BIN
sprites/3d/com01/com01.blend1 Executable file

Binary file not shown.

BIN
sprites/3d/com01/roof.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 455 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/roof.png-bf2bb78d9c3ba04f0f1548118885a1e9.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com01/roof.png"
dest_files=[ "res://.import/roof.png-bf2bb78d9c3ba04f0f1548118885a1e9.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com01/sign.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/sign.png-669ee3b9a4dfff06aaf16c8100daa969.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com01/sign.png"
dest_files=[ "res://.import/sign.png-669ee3b9a4dfff06aaf16c8100daa969.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com01/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-599d122ddbffb158d0910c450da59700.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com01/turf.png"
dest_files=[ "res://.import/turf.png-599d122ddbffb158d0910c450da59700.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com02/com02.blend Executable file

Binary file not shown.

BIN
sprites/3d/com02/fence.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/fence.png-abd5d5a2c990bc333a38090aed8b9a3f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com02/fence.png"
dest_files=[ "res://.import/fence.png-abd5d5a2c990bc333a38090aed8b9a3f.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com02/shed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/shed.png-89db36ac1b7ebb6bdb0c4c46be7885cd.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com02/shed.png"
dest_files=[ "res://.import/shed.png-89db36ac1b7ebb6bdb0c4c46be7885cd.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com02/tank.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 875 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/tank.png-dfd9d2552c1bfd047871e48af3bf80b2.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com02/tank.png"
dest_files=[ "res://.import/tank.png-dfd9d2552c1bfd047871e48af3bf80b2.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com02/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-aec62677a91dc5ab7c171fe27120d1e0.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com02/turf.png"
dest_files=[ "res://.import/turf.png-aec62677a91dc5ab7c171fe27120d1e0.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com03/blue_bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/blue_bldg.png-ebaffce66a6fbfb6914ca1961dc15930.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com03/blue_bldg.png"
dest_files=[ "res://.import/blue_bldg.png-ebaffce66a6fbfb6914ca1961dc15930.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com03/com03.blend Executable file

Binary file not shown.

BIN
sprites/3d/com03/green_bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/green_bldg.png-021882362f319a17def9a7cbc5aa27d7.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com03/green_bldg.png"
dest_files=[ "res://.import/green_bldg.png-021882362f319a17def9a7cbc5aa27d7.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com03/red_bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 806 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/red_bldg.png-2966721cf8bf70216af15a85998df211.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com03/red_bldg.png"
dest_files=[ "res://.import/red_bldg.png-2966721cf8bf70216af15a85998df211.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com03/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-ef2104d5ba6cd909f20bd56414be1af5.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com03/turf.png"
dest_files=[ "res://.import/turf.png-ef2104d5ba6cd909f20bd56414be1af5.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com05/bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg.png-e16439e76d25ea9f1f01c31a9cf22d20.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com05/bldg.png"
dest_files=[ "res://.import/bldg.png-e16439e76d25ea9f1f01c31a9cf22d20.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com05/com05.blend Executable file

Binary file not shown.

BIN
sprites/3d/com05/red_bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 926 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/red_bldg.png-6759246a6a43ee38b955fe9f1a417b27.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com05/red_bldg.png"
dest_files=[ "res://.import/red_bldg.png-6759246a6a43ee38b955fe9f1a417b27.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com05/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-e9daf09c61e623746e85eac92e6070e5.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com05/turf.png"
dest_files=[ "res://.import/turf.png-e9daf09c61e623746e85eac92e6070e5.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com06/bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 993 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg.png-db980b6d9b925985f521eb73c12c1c02.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com06/bldg.png"
dest_files=[ "res://.import/bldg.png-db980b6d9b925985f521eb73c12c1c02.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com06/com06.blend Executable file

Binary file not shown.

BIN
sprites/3d/com06/shed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/shed.png-e367b984b5ff15fc6d441c0feae24385.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com06/shed.png"
dest_files=[ "res://.import/shed.png-e367b984b5ff15fc6d441c0feae24385.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com06/sign.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/sign.png-a0d5762e07f465dafd921d0e9e2f619f.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com06/sign.png"
dest_files=[ "res://.import/sign.png-a0d5762e07f465dafd921d0e9e2f619f.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com06/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-bac95af55c645d7407fc9d781bf023e7.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com06/turf.png"
dest_files=[ "res://.import/turf.png-bac95af55c645d7407fc9d781bf023e7.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com11/bldg1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg1.png-38731ab50f87d59c0833d9181039d887.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com11/bldg1.png"
dest_files=[ "res://.import/bldg1.png-38731ab50f87d59c0833d9181039d887.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com11/bldg2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 305 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg2.png-3759823fac212e1b22bef87fb2ef64bb.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com11/bldg2.png"
dest_files=[ "res://.import/bldg2.png-3759823fac212e1b22bef87fb2ef64bb.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com11/bldg3.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg3.png-125cf357973c3ceeb308f2f1669ba563.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com11/bldg3.png"
dest_files=[ "res://.import/bldg3.png-125cf357973c3ceeb308f2f1669ba563.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/com11/com11.blend Executable file

Binary file not shown.

BIN
sprites/3d/com11/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-f100f9355e6190dee3e0e74ca84ca4d4.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/com11/turf.png"
dest_files=[ "res://.import/turf.png-f100f9355e6190dee3e0e74ca84ca4d4.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/firestation/bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg.png-e87a71a0149d3d0afe5b9e24e25b377c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/firestation/bldg.png"
dest_files=[ "res://.import/bldg.png-e87a71a0149d3d0afe5b9e24e25b377c.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

Binary file not shown.

BIN
sprites/3d/firestation/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-94a0cb3760b8165cd331dadb453003ff.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/firestation/turf.png"
dest_files=[ "res://.import/turf.png-94a0cb3760b8165cd331dadb453003ff.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/hospital/bldg.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/bldg.png-6d45606ee17bc2c151595c2c92c8d6e7.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/hospital/bldg.png"
dest_files=[ "res://.import/bldg.png-6d45606ee17bc2c151595c2c92c8d6e7.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

Binary file not shown.

BIN
sprites/3d/hospital/turf.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/turf.png-2846e3c88147f0d18ecf49dec6f5d249.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/3d/hospital/turf.png"
dest_files=[ "res://.import/turf.png-2846e3c88147f0d18ecf49dec6f5d249.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
sprites/3d/house01/bldgs.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Some files were not shown because too many files have changed in this diff Show more