1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-22 08:04:23 +00:00
looping-for-loops/project.godot

122 lines
3.9 KiB
Text
Raw Normal View History

2020-10-02 21:57:41 +00:00
; 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
2020-10-03 01:07:51 +00:00
_global_script_classes=[ {
2020-10-04 14:35:24 +00:00
"base": "Area2D",
"class": "Buzzsaw",
"language": "GDScript",
2020-10-04 14:35:24 +00:00
"path": "res://Objects/ScrollingObjects/Buzzsaw.gd"
}, {
2020-10-03 01:07:51 +00:00
"base": "Node",
"class": "Conductor",
"language": "GDScript",
2020-10-04 14:35:24 +00:00
"path": "res://Objects/SpecialObjects/Conductor.gd"
}, {
"base": "StaticBody2D",
"class": "ConveyorBelt",
"language": "GDScript",
2020-10-04 14:35:24 +00:00
"path": "res://Objects/ConveyorBelt/ConveyorBelt.gd"
}, {
2020-10-04 14:35:24 +00:00
"base": "ScrollParent",
"class": "ConveyorScrollParent",
"language": "GDScript",
2020-10-04 15:29:28 +00:00
"path": "res://Objects/ScrollingObjects/Utilities/ConveyorScrollParent.gd"
}, {
"base": "Node2D",
"class": "GameButton",
"language": "GDScript",
"path": "res://Objects/ScrollingObjects/Buttons/GameButton.gd"
}, {
2020-10-04 14:35:24 +00:00
"base": "KinematicBody2D",
"class": "Player",
"language": "GDScript",
2020-10-04 14:35:24 +00:00
"path": "res://Objects/SpecialObjects/Player.gd"
2020-10-03 18:27:59 +00:00
}, {
2020-10-04 14:35:24 +00:00
"base": "KinematicBody2D",
"class": "Press",
"language": "GDScript",
2020-10-04 14:35:24 +00:00
"path": "res://Objects/ScrollingObjects/Press.gd"
}, {
2020-10-04 14:35:24 +00:00
"base": "Node",
"class": "ScrollParent",
"language": "GDScript",
2020-10-04 15:29:28 +00:00
"path": "res://Objects/ScrollingObjects/Utilities/ScrollParent.gd"
}, {
2020-10-04 15:29:28 +00:00
"base": "Node2D",
"class": "WrapParent",
"language": "GDScript",
"path": "res://Objects/ScrollingObjects/Utilities/WrapParent.gd"
}, {
"base": "Node",
"class": "Wrapper",
"language": "GDScript",
"path": "res://Objects/SpecialObjects/Wrapper.gd"
2020-10-03 01:07:51 +00:00
} ]
2020-10-02 21:57:41 +00:00
_global_script_class_icons={
"Buzzsaw": "",
"Conductor": "",
"ConveyorBelt": "",
2020-10-04 14:35:24 +00:00
"ConveyorScrollParent": "",
"GameButton": "",
2020-10-03 18:27:59 +00:00
"Player": "",
"Press": "",
2020-10-04 14:35:24 +00:00
"ScrollParent": "",
2020-10-04 15:29:28 +00:00
"WrapParent": "",
"Wrapper": ""
2020-10-02 21:57:41 +00:00
}
[application]
config/name="ld47"
2020-10-04 15:29:28 +00:00
run/main_scene="res://Objects/Main.tscn"
2020-10-03 01:20:01 +00:00
[display]
window/size/width=1280
window/size/height=720
window/size/resizable=false
[input]
plr_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)
, 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)
2020-10-03 18:27:59 +00:00
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null)
]
}
plr_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)
]
}
plr_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)
]
}
2020-10-03 01:20:01 +00:00
[layer_names]
2d_render/layer_1="Default"
2d_physics/layer_1="Default"
2d_physics/layer_2="Player"
2020-10-03 18:27:59 +00:00
2d_physics/layer_3="Conveyor Belt"
2d_physics/layer_4="Obstacles"
2d_physics/layer_5="Screen Walls"
2020-10-02 21:57:41 +00:00
[rendering]
quality/driver/driver_name="GLES2"
vram_compression/import_etc=true
vram_compression/import_etc2=false