diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6670907 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ + +.externalToolBuilders +.DS_Store +.lock-wscript +build +*.pyc +.project +.cproject +builtins +.internal diff --git a/game.project b/game.project new file mode 100644 index 0000000..3b16dcd --- /dev/null +++ b/game.project @@ -0,0 +1,21 @@ +[project] +title = My project +version = 0.1 + +[bootstrap] +main_collection = /main/main.collectionc + +[input] +game_binding = /input/game.input_bindingc +use_accelerometer = 0 + +[display] +width = 1280 +height = 720 + +[physics] +scale = 0.02 + +[script] +shared_state = 1 + diff --git a/input/game.input_binding b/input/game.input_binding new file mode 100644 index 0000000..e69de29 diff --git a/main/images/logo.png b/main/images/logo.png new file mode 100644 index 0000000..d76885f Binary files /dev/null and b/main/images/logo.png differ diff --git a/main/logo.atlas b/main/logo.atlas new file mode 100644 index 0000000..44e703e --- /dev/null +++ b/main/logo.atlas @@ -0,0 +1,3 @@ +images { + image: "/main/images/logo.png" +} diff --git a/main/main.collection b/main/main.collection new file mode 100644 index 0000000..6667c3b --- /dev/null +++ b/main/main.collection @@ -0,0 +1,42 @@ +name: "main" +scale_along_z: 0 +embedded_instances { + id: "logo" + data: "embedded_components {\n" + " id: \"sprite\"\n" + " type: \"sprite\"\n" + " data: \"tile_set: \\\"/main/logo.atlas\\\"\\n" + "default_animation: \\\"logo\\\"\\n" + "material: \\\"/builtins/materials/sprite.material\\\"\\n" + "blend_mode: BLEND_MODE_ALPHA\\n" + "\"\n" + " position {\n" + " x: 0.0\n" + " y: 0.0\n" + " z: 0.0\n" + " }\n" + " rotation {\n" + " x: 0.0\n" + " y: 0.0\n" + " z: 0.0\n" + " w: 1.0\n" + " }\n" + "}\n" + "" + position { + x: 640.0 + y: 340.0 + z: 0.0 + } + rotation { + x: 0.0 + y: 0.0 + z: 0.0 + w: 1.0 + } + scale3 { + x: 1.0 + y: 1.0 + z: 1.0 + } +}