Saturday, August 1, 2015

Make mobile game multiplatforms with cocos2d-x - [Part 3] Add Images and Sprites into game

Filled under:

...

Posted By Live Blog8:04 PM

Make mobile game multiplatforms with cocos2d-x - [Part 2] - First app GetArrow for android

Filled under:

...

Posted By Live Blog8:02 PM

Make mobile game multiplatforms with cocos2d-x - [Part 1] - Install cocos2d-x and tools

Filled under:

...

Posted By Live Blog8:01 PM

Wednesday, January 28, 2015

[Tutorial] Cocos2d-x: The second game - Breakout - Create and destroy brick (Part 2)

Some tasks in this lesson: + Create bricks+ Process physics collision+ Check the destruction of bricks, if done, it's WINGAME+ Check GameOver when the ball falls but not colliding with the paddle- It seems muck work but it's simple because it's rather like the first gameLet's start!Step 1 - Create bricksOpen file HelloWorldScene.cpp, add the following code blockfor (int i = 0; i < 5; i++) { static int padding = 100; auto block =...

Posted By Live Blog8:47 PM

[Tutorial] Cocos2d-x: The second game - Breakout (Part 1)

In this game, you must do some following tasks: + Add objects into game + Set physics attributes ( using Chipmunk for ease ) + Create the movement of the ball + Move the paddle Step 1 - Add objects into game - Set physics attributes Create a new project with familiar command: >cocos new breakout -p com.vn.breakout -l cpp -d f:android/project And remember to add USING_NS_CC; into HelloWorldScene.h  Open file HelloWorldScene.h add...

Posted By Live Blog8:20 AM

Tuesday, January 27, 2015

[Tutorial] Cocos2d-x: Box2D - another physics library of cocos2d-x (Part 2)

Filled under: ,

In previous part, we studied about Box2D, and build a small app using physics Box2D. In this lesson, we come to advanced a bit, control the ball, make it collide with the screen với màn hình as follow: + Make the ball move by vector + force + Predict the direction the ball moves Step 1 - Make the ball move by vector + force * Open file HelloWorldScene.h, in Public area, add the following code block: // You can see the meanings of variables...

Posted By Live Blog1:19 AM

Saturday, January 24, 2015

[Tutorial] Cocos2d-x: Box2D - another physics library of cocos2d-x (Part 1)

Filled under: ,

Now, you study how to use Box2D in Cocos2d-x. By default, Cocos2d-x is installed for users to use the library of Cocos2d-x + Chipmunk, if you want to use Box2D, you must do some task to import it into the compiler. In this lesson, you study: + How to setup to use Box2D + An example of physic, applying Box2D physic Bắt đầu chém nào! Step 1 - Setup to use Box2D Because by default, Cocos2d-x forces you to use Chipmunk, so you must do some...

Posted By Live Blog9:06 PM

[Tutorial] Cocos2d-x: Create physics body of the complex objects by using Physical Editor software

We know how to create physics in Cocos2d-x V3.0, but in the case that is a circle, so creating physics body is rather easy. if our object has complex boundary, how do we create? This lesson has two parts: + Create PhysicsBody Polygons from images by Box2d-Editor software + Import into game and make Physics of Engine process through analysis functions. Part 1: Create PhysicsBody Polygons...

Posted By Live Blog7:07 AM

Wednesday, January 21, 2015

[Tutorial] Cocos2d-x: Create the first simple game - Gameover, calculate scores, add sounds for game effervescent (Part 4)

In this last part, we do all remaining tasks: + Check game-Over when monsters collide character + Add sound when shooting bullets and add some background music for more attractive. + Here skip calculating scores. This lesson is only in simple level. Now let's start!!!!! Step 1 - Add sound into game You Download resource, copy into folder Resource of Project Then open file HelloWordScene.cpp, in function init(), add...

Posted By Live Blog7:52 AM

Choose an Android item