Tinyswords-Defold/main/knight-blue.go

40 lines
748 B
Go

components {
id: "sprite"
component: "/main/knight-blue.sprite"
}
components {
id: "knight"
component: "/scripts/knight.script"
properties {
id: "speed"
value: "150.0"
type: PROPERTY_TYPE_NUMBER
}
}
embedded_components {
id: "collisionobject"
type: "collisionobject"
data: "type: COLLISION_OBJECT_TYPE_KINEMATIC\n"
"mass: 0.0\n"
"friction: 0.1\n"
"restitution: 0.5\n"
"group: \"default\"\n"
"mask: \"default\"\n"
"embedded_collision_shape {\n"
" shapes {\n"
" shape_type: TYPE_BOX\n"
" position {\n"
" y: 7.0\n"
" }\n"
" rotation {\n"
" }\n"
" index: 0\n"
" count: 3\n"
" }\n"
" data: 39.692307\n"
" data: 41.31783\n"
" data: 10.0\n"
"}\n"
""
}