Skip to content

Instantly share code, notes, and snippets.

@Nick0603
Last active October 15, 2017 02:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nick0603/8552c10b3d3453a76830694359ab54ad to your computer and use it in GitHub Desktop.
Save Nick0603/8552c10b3d3453a76830694359ab54ad to your computer and use it in GitHub Desktop.
// 創造角色
var face = createSprite( ["bear.png","cat.png","cow.png"] );
// 重複執行
forever(function() {
// 如果 角色 碰觸到 滑鼠
if(face.touched(cursor)) {
// 角色 切換下一個 造型
face.nextCostume();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment