Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
builder authored and AGulev committed Apr 13, 2018
1 parent da69e98 commit 21cb39b
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

.externalToolBuilders
.DS_Store
.lock-wscript
build
*.pyc
.project
.cproject
builtins
.internal
21 changes: 21 additions & 0 deletions game.project
Original file line number Diff line number Diff line change
@@ -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

Empty file added input/game.input_binding
Empty file.
Binary file added main/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions main/logo.atlas
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
images {
image: "/main/images/logo.png"
}
42 changes: 42 additions & 0 deletions main/main.collection
Original file line number Diff line number Diff line change
@@ -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
}
}

0 comments on commit 21cb39b

Please sign in to comment.