mirror of
https://github.com/tonytins/citylimits
synced 2025-12-15 20:54:43 -05:00
Created first zone type
- Renamed CityData to SimData and added SimEvents for signals = Set starting screen to game screen for now
This commit is contained in:
parent
9d565de091
commit
71bdc3d971
7 changed files with 119 additions and 8 deletions
|
|
@ -10,19 +10,20 @@ config_version=4
|
|||
|
||||
_global_script_classes=[ ]
|
||||
_global_script_class_icons={
|
||||
|
||||
}
|
||||
|
||||
[application]
|
||||
|
||||
config/name="City Limits"
|
||||
run/main_scene="res://scenes/titlescreen.tscn"
|
||||
run/main_scene="res://scenes/game.tscn"
|
||||
config/icon="res://icon.png"
|
||||
config/windows_native_icon="res://icon.ico"
|
||||
|
||||
[autoload]
|
||||
|
||||
CityData="*res://scripts/autoload/citydata.gd"
|
||||
CityData="*res://scripts/autoload/SimData.gd"
|
||||
SimData="*res://scripts/autoload/SimData.gd"
|
||||
SimEvents="*res://scripts/autoload/SimEvents.gd"
|
||||
|
||||
[display]
|
||||
|
||||
|
|
@ -30,6 +31,10 @@ window/size/resizable=false
|
|||
window/stretch/mode="2d"
|
||||
window/stretch/aspect="keep"
|
||||
|
||||
[editor_plugins]
|
||||
|
||||
enabled=PoolStringArray( )
|
||||
|
||||
[input]
|
||||
|
||||
ui_cheats={
|
||||
|
|
@ -43,5 +48,6 @@ ui_cheats={
|
|||
[rendering]
|
||||
|
||||
quality/driver/driver_name="GLES2"
|
||||
quality/2d/use_pixel_snap=true
|
||||
2d/snapping/use_gpu_pixel_snap=true
|
||||
environment/default_environment="res://default_env.tres"
|
||||
quality/2d/use_pixel_snap=true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue