1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ; 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=5
- [application]
- config/name="2D in 3D"
- config/description="A demo showing how a 2D scene can be shown within a 3D one using viewports."
- config/tags=PackedStringArray("2d", "3d", "demo", "official", "rendering")
- run/main_scene="res://2d_in_3d.tscn"
- config/features=PackedStringArray("4.2")
- config/icon="res://icon.webp"
- [input]
- left_move_up={
- "deadzone": 0.5,
- "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- left_move_down={
- "deadzone": 0.5,
- "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- right_move_up={
- "deadzone": 0.5,
- "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- right_move_down={
- "deadzone": 0.5,
- "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"echo":false,"script":null)
- ]
- }
- [rendering]
- renderer/rendering_method="mobile"
- anti_aliasing/quality/msaa_3d=2
- environment/default_environment="res://default_env.tres"
|