Books cocos2d-x javascript
Learning Cocos2d-JS Game Development
Rapid Game Development Using Cocos2D-JS
Docs cocos2d-x javascript
New API docs: http://www.cocos2d-x.org/docs/api-ref/js/v3x/index.html
New wiki docs: http://slackmoehrle.github.io/index.html or http://www.cocos2d-x.org/docs/
Sonarlearning wiki docs: http://cocos.sonarlearning.co.uk/docs/frequently-asked-questions/
Old cocos-js wiki docs: http://www.cocos2d-x.org/wiki/Cocos2d-JS
Samples cocos2d-x javascript
New sample MOONWARRIORS: Source: https://github.com/cocos2d/cocos2d-x-samples/tree/v3/samples/MoonWarriors Gameplay: http://cocos2d-x.org/wiki/MoonWarriors_-_Cocos2d-JS_Showcase
New tests: https://github.com/cocos2d/cocos2d-x/tree/4ab1540ccc27185bb468d361fcfe6bd4d284b4f5/tests Online demo: http://jpnode.demaxism.com/demo/jstest/tests/js-tests/
New cocos-x samples: https://github.com/cocos2d/cocos2d-x-samples
Old cocos-js samples: https://github.com/cocos2d/cocos2d-js-tests
Tutorials cocos2d-x javascript
parkour-game-with-javascript-v3.0: https://github.com/slackmoehrle/cocos-docs/tree/92bba2dcc94ad718c1bfbdde37d47b19da879e6a/tutorial/framework/html5/parkour-game-with-javascript-v3.0
More official tuts:
https://github.com/slackmoehrle/cocos-docs/tree/92bba2dcc94ad718c1bfbdde37d47b19da879e6a/tutorials/javascript
https://github.com/slackmoehrle/cocos-docs/tree/92bba2dcc94ad718c1bfbdde37d47b19da879e6a/tutorial
Snake game: http://www.gamedevcraft.com/2015/09/cross-platform-snake-game-in-javascript.html
Cocos2D HTML 5 Tutorial Series table of contents (2012, gamefromscratch.com): http://www.gamefromscratch.com/page/Cocos2D-HTML-5-Tutorial-Series-table-of-contents.aspx
(2013) From zero to a complete game with Cocos2d HTML5: http://www.emanueleferonato.com/2013/05/16/from-zero-to-a-complete-game-with-cocos2d-html5-step-1/
(2013) How To Make a Cross-Platform Game with Cocos2D Javascript Tutorial: http://www.raywenderlich.com/32970
(2014) HTML5 Game Development with Cocos2d-JS - http://blog.rhesoft.com/2014/06/28/tutorial-html5-game-development-with-cocos2d-js-firefox-os/
Video from Sonar Systems
Cocos2d-x JavaScript Networking: https://www.youtube.com/playlist?list=PLRtjMdoYXLf6dWQTfK1b_kjLXK0EmQOES
Cocos2d-x JavaScript - Rect/Bounding Box Collision Detection: https://www.youtube.com/watch?v=t42V0slcf-0
Cocos2d-x Multi Device Design 2.0: http://www.sonarlearning.co.uk/coursepage.php?topic=game&course=cocos2d-x-multi-device-2
Cocos2d-x Pass Data To Scene: http://www.sonarlearning.co.uk/coursepage.php?topic=game&course=cocos2d-x-pass-data
Cocos2d-JS v3 Course: http://www.sonarlearning.co.uk/coursepage.php?topic=game&course=cocos2d-js-v3
Cocos2d-x v2 JavaScript Course: http://www.sonarlearning.co.uk/coursepage.php?topic=game&course=cocos2d-x-v2-js
Useful js code
Cocos fullscreen web and mobile: https://gist.github.com/derofim/0cf0517ff2b39a48e352
Cocos load image from url: https://gist.github.com/derofim/b118a47af0022e3c9c57
Cocos shaders: https://gist.github.com/derofim/39ceb8a67d24284f32a9
http://www.cocoachina.com/bbs/read.php?tid-458173.html - CocosCreator + SocketIO + MySQL 简易教程(图裂已修复
Tower defence http://www.cocos.com/doc/tutorial/lists?id=114
https://github.com/GethuGames/cocos2dx-chalk-board-draw
http://www.gethugames.in/tag/cocos2dx
https://www.youtube.com/watch?v=77FveYYWxCQ
http://webcache.googleusercontent.com/search?q=cache:Rb6EaePpZwcJ:www.gethugames.in/2015/11/cocos2d-js-chalk-board-drawing-and-animations.html+&cd=9&hl=ru&ct=clnk&gl=ru&lr=lang_en%7Clang_ru
http://www.gethugames.in/2015/11/cocos2d-js-chalk-board-drawing-and-animations.html
Spine (skeleton animation) $69 - $300 USD https://ru.esotericsoftware.com/spine-purchase
Spine + cocos
http://www.gmtdev.com/blog/2014/09/02/getting-started-with-spine-skeletal-animations-with-cocos2d-x-v3/
https://github.com/EsotericSoftware/spine-runtimes/tree/master/spine-cocos2dx/3
Cocos API:
http://www.cocos2d-x.org/reference/html5-js/V3.8/symbols/sp.Skeleton.html
Spine + cocos2d js
https://github.com/cocos2d/cocos2d-x/blob/v3/tests/js-tests/src/SpineTest/SpineTest.js
RUS program 1.7.3:
http://gamemaker.at.ua/load/prochee/prochee/23
RUS edu video:
http://rutracker.org/forum/viewtopic.php?t=5026711
UPD 1:
* Spineboy demo works*
package.json
"modules": ["cocos2d", "extensions"],
resource.js
spineboy_png: "res/spineboy.png",
spineboy_json: "res/spineboy.json",
spineboy_atlas: "res/spineboy.atlas",
app.js
var skeletonNode = new sp.SkeletonAnimation(res.spineboy_json, res.spineboy_atlas, 1.5);
skeletonNode.setAnimation(0, "walk", true);
skeletonNode.setScale(0.2);
skeletonNode.setPosition(cc.p(50, 100));
this.addChild(skeletonNode);
cc.Armature or nodeWithTheAnimations : Cocos Studio Skeletal animation (?)
How to: Create a Skeletal Animation with cocos:
http://cocos2d-x.org/documentation/editors_and_tools/chapter3/Animation/Sample/en/index.html
Basic animation:
https://www.youtube.com/watch?v=D1s4cEnEXys
Skeletal animation:
https://www.youtube.com/watch?v=goylmxnXmqU
http://loctho95.blogspot.ru/2015/06/skeletal-animation-on-cocos2d-x.html
Cocostudio skeletal animation to code sample (?)
http://www.sonarlearning.co.uk/development/v1/questions.php?question-topic=327
http://discuss.cocos2d-x.org/t/cocostudio-skeletal-animation-to-code-sample/23506
Create Zig Zag Game using cocos2d-x JavaScript http://www.gamedevcraft.com/2016/09/create-zig-zag-game-using-cocos2d-x_27.html
Multiplayer Card Game using WebSockets,Java Netty Server ,Cocos2d-x-HTML5
http://www.gamedevcraft.com/2016/01/multiplayer-card-game-using.html
Статьи про мультиплеер
http://buildnewgames.com/real-time-multiplayer/
http://www.gabrielgambetta.com/fpm2.html
Multiplayer WebSocket Game server written in C using libuv & libwebsockets & Cocos2d-x-HTML5
http://www.gamedevcraft.com/2016/08/part-1-multiplayer-websocket-game.html
https://www.youtube.com/watch?v=zD8QuHzzpUk
Socket.io tutorial series: clone of agar.io https://www.youtube.com/watch?v=JXuxYMGe4KI
https://github.com/CodingRainbow/Rainbow-Code/tree/master/challenges/CC_32.2_agario_sockets
http://www.cocos.com/doc/tutorial/index?type=cocos2d-js