123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- ; 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": "MenuButton",
- "class": "OptionMenu",
- "language": "GDScript",
- "path": "res://utils/option_menu.gd"
- }, {
- "base": "Node2D",
- "class": "Test",
- "language": "GDScript",
- "path": "res://test.gd"
- }, {
- "base": "Test",
- "class": "TestCharacter",
- "language": "GDScript",
- "path": "res://tests/functional/test_character.gd"
- } ]
- _global_script_class_icons={
- "OptionMenu": "",
- "Test": "",
- "TestCharacter": ""
- }
- [application]
- config/name="2D Physics Tests"
- config/description="This demo contains a series of tests for the 2D physics engine.
- They can be used for different purpose:
- - Functional tests to check for regressions and behavior of the 2D physics engine
- - Performance tests to evaluate performance of the 2D physics engine"
- run/main_scene="res://main.tscn"
- config/icon="res://icon.png"
- [autoload]
- Log="*res://utils/system_log.gd"
- System="*res://utils/system.gd"
- [debug]
- gdscript/warnings/return_value_discarded=false
- [display]
- window/dpi/allow_hidpi=true
- window/stretch/mode="2d"
- window/stretch/aspect="expand"
- [input]
- ui_left={
- "deadzone": 0.5,
- "events": [ ]
- }
- ui_right={
- "deadzone": 0.5,
- "events": [ ]
- }
- ui_up={
- "deadzone": 0.5,
- "events": [ ]
- }
- ui_down={
- "deadzone": 0.5,
- "events": [ ]
- }
- toggle_full_screen={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":70,"unicode":0,"echo":false,"script":null)
- ]
- }
- exit={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
- ]
- }
- toggle_debug_collision={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":67,"unicode":0,"echo":false,"script":null)
- ]
- }
- restart_test={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":82,"unicode":0,"echo":false,"script":null)
- ]
- }
- toggle_pause={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":80,"unicode":0,"echo":false,"script":null)
- ]
- }
- character_left={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777231,"unicode":0,"echo":false,"script":null)
- , Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
- ]
- }
- character_right={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777233,"unicode":0,"echo":false,"script":null)
- , Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
- ]
- }
- character_jump={
- "deadzone": 0.5,
- "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777232,"unicode":0,"echo":false,"script":null)
- , Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null)
- ]
- }
- [memory]
- limits/message_queue/max_size_kb=10240
- [rendering]
- quality/driver/driver_name="GLES2"
- vram_compression/import_etc=true
- vram_compression/import_etc2=false
- environment/default_clear_color=Color( 0.184314, 0.184314, 0.184314, 1 )
- quality/filters/msaa=2
|