mirror of
https://github.com/Relintai/gdnative_python.git
synced 2024-11-14 10:27:22 +01:00
68 lines
1.8 KiB
Plaintext
68 lines
1.8 KiB
Plaintext
|
; 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=[ ]
|
||
|
_global_script_class_icons={
|
||
|
|
||
|
}
|
||
|
|
||
|
[application]
|
||
|
|
||
|
run/main_scene="res://pong.tscn"
|
||
|
name="Pong"
|
||
|
main_scene="res://pong.tscn"
|
||
|
disable_stdout=true
|
||
|
icon="res://icon.png"
|
||
|
|
||
|
[display]
|
||
|
|
||
|
width=640
|
||
|
height=400
|
||
|
stretch_2d=true
|
||
|
|
||
|
[editor_plugins]
|
||
|
|
||
|
enabled=PoolStringArray( "pythonscript_repl" )
|
||
|
|
||
|
[gdnative]
|
||
|
|
||
|
singletons=[ "res://pythonscript.gdnlib" ]
|
||
|
|
||
|
[input]
|
||
|
|
||
|
p1_move_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":16777237,"unicode":0,"echo":false,"script":null)
|
||
|
]
|
||
|
}
|
||
|
p1_move_down={
|
||
|
"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":16777238,"unicode":0,"echo":false,"script":null)
|
||
|
]
|
||
|
}
|
||
|
p2_move_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)
|
||
|
]
|
||
|
}
|
||
|
p2_move_down={
|
||
|
"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)
|
||
|
]
|
||
|
}
|
||
|
|
||
|
[memory]
|
||
|
|
||
|
multithread/thread_rid_pool_prealloc=60
|
||
|
|
||
|
[render]
|
||
|
|
||
|
default_clear_color=Color( 0, 0, 0, 1 )
|