Skip to content

Instantly share code, notes, and snippets.

@pwightman
Created November 5, 2013 00:24
Show Gist options
  • Save pwightman/7311799 to your computer and use it in GitHub Desktop.
Save pwightman/7311799 to your computer and use it in GitHub Desktop.
{
"traits": [
{
"id": "Draggable",
"properties": {
"up": true,
"down": true,
"left": true,
"right": true
},
"code": [
{
"on_event": {
"name": "touch_moved",
"parameters": ["touch_x", "touch_y"],
"suite": [
{ "set": ["x", { "get": "touch_x" }] },
{ "set": ["y", { "get": "touch_y" }] }
]
}
}
]
}
],
"objects": [
{
"id": "paddle1",
"traits": [ { "id": "Draggable", } ],
"properties": {
"x": 10,
"y": 10,
"width": 50,
"height": 20
},
"code": []
}
]
}
on start {
on drag ( [[left] or [right]] ) {
};
on touch () {
}
code...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment