summaryrefslogtreecommitdiff
path: root/demos/2d/platformer/engine.cfg
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-02-09 22:10:30 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-02-09 22:10:30 -0300
commit0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac (patch)
tree276c4d099e178eb67fbd14f61d77b05e3808e9e3 /demos/2d/platformer/engine.cfg
parent0e49da1687bc8192ed210947da52c9e5c5f301bb (diff)
GODOT IS OPEN SOURCE
Diffstat (limited to 'demos/2d/platformer/engine.cfg')
-rw-r--r--demos/2d/platformer/engine.cfg28
1 files changed, 28 insertions, 0 deletions
diff --git a/demos/2d/platformer/engine.cfg b/demos/2d/platformer/engine.cfg
new file mode 100644
index 0000000000..0ca951ed00
--- /dev/null
+++ b/demos/2d/platformer/engine.cfg
@@ -0,0 +1,28 @@
+[application]
+
+name="Platformer"
+main_scene="res://stage.xml"
+icon="res://icon.png"
+name_es="Plataformero"
+
+[display]
+
+width=800
+height=480
+stretch_2d=true
+
+[input]
+
+move_left=[key(Left), jbutton(0, 14)]
+move_right=[key(Right), jbutton(0, 15)]
+jump=[key(Up), jbutton(0, 0)]
+shoot=[key(Space), jbutton(0, 2)]
+spawn=[key(F1), jbutton(0, 11)]
+
+[physics_2d]
+
+default_gravity=700
+
+[render]
+
+mipmap_policy=1