123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- ; Engine configuration file.
- ; It's best edited using the editor UI and not directly,
- ; since the parameters that go here are not all obvious.
- ;
- ; Format:
- ; [section] ; section goes between []
- ; param=value ; assign values to parameters
- config_version=4
- _global_script_classes=[ {
- "base": "Object",
- "class": "Cell",
- "language": "GDScript",
- "path": "res://CELL.gd"
- }, {
- "base": "Reference",
- "class": "CellType",
- "language": "GDScript",
- "path": "res://CellType.gd"
- }, {
- "base": "Reference",
- "class": "Individuum",
- "language": "GDScript",
- "path": "res://Individuum.gd"
- }, {
- "base": "Reference",
- "class": "Room",
- "language": "GDScript",
- "path": "res://Room.gd"
- }, {
- "base": "ColorRect",
- "class": "VisualCell",
- "language": "GDScript",
- "path": "res://VisualCell.gd"
- } ]
- _global_script_class_icons={
- "Cell": "",
- "CellType": "",
- "Individuum": "",
- "Room": "",
- "VisualCell": ""
- }
- [application]
- config/name="CellularFloor"
- run/main_scene="res://GRID.tscn"
- config/icon="res://icon.png"
- [display]
- window/size/resizable=false
- [memory]
- limits/message_queue/max_size_kb=50024
- [rendering]
- quality/driver/driver_name="GLES2"
- environment/default_environment="res://default_env.tres"
|