12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- ; 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
- [application]
- config/name="Input Mapping GUI"
- config/description="A demo showing how to build an input key remapping screen.
- - Click the buttons to change the bound keys.
- - Persists the keys to disk, so they are preserved
- after the project is restarted."
- run/main_scene="res://InputRemapMenu.tscn"
- config/icon="res://icon.png"
- [display]
- window/size/width=640
- window/size/height=480
- window/dpi/allow_hidpi=true
- window/stretch/mode="2d"
- window/stretch/aspect="expand"
- [gdnative]
- singletons=[ ]
- [input]
- move_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)
- ]
- }
- move_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)
- ]
- }
- look_up={
- "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)
- ]
- }
- crouch={
- "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":16777234,"unicode":0,"echo":false,"script":null)
- ]
- }
- dash={
- "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":16777237,"unicode":0,"echo":false,"script":null)
- ]
- }
- [rendering]
- quality/driver/driver_name="GLES2"
- vram_compression/import_etc=true
- vram_compression/import_etc2=false
|