├── .cocos-project.json ├── .gitignore ├── .gitmodules ├── .project ├── .settings └── version.json ├── README.md ├── config.json ├── fileinfo_debug.json ├── index.html ├── main.js ├── project.json ├── res ├── CloseNormal.png ├── CloseSelected.png ├── HelloWorld.png └── favicon.ico └── src ├── app.js └── resource.js /.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/.cocos-project.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | frameworks/ 2 | runtime/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/.project -------------------------------------------------------------------------------- /.settings/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/.settings/version.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/config.json -------------------------------------------------------------------------------- /fileinfo_debug.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/main.js -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/project.json -------------------------------------------------------------------------------- /res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/res/CloseNormal.png -------------------------------------------------------------------------------- /res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/res/CloseSelected.png -------------------------------------------------------------------------------- /res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/res/HelloWorld.png -------------------------------------------------------------------------------- /res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/res/favicon.ico -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/src/app.js -------------------------------------------------------------------------------- /src/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomelonode/pomelo-cocos2d-js-demo/HEAD/src/resource.js --------------------------------------------------------------------------------