Sample Games
Lincoln_story

Lincoln Story

Plant crops for a bountiful harvest.

Doll

Doll Customizer

Customize a doll with hairstyles, clothing etc.

Pogo

Pogo

Jump up, up, and up again.

Hello_world

Hello World

Simple Flash animation.

Pong

Pong-Port

Pong game, touch-input version.

Chunks_of_rock

Chunks of Rock

Blast to bits those big dangerous rocks.

Chicken_fingers

Chicken Fingers

Multi-touch demo.

Select Format:

This code snippet positions the moving-platforms (the ones that move left-right).

for( var i = 0; i < this._movingPlatforms.length; i++ ){
        var child = this._movingPlatforms[i];
        child.x = child.x + child.velocityX;
        if( child.x <= 0 ){
          child.x = 0;
          child.velocityX = MOVING_PLATFORM_SPEED;
        }else if( child.x >= 640 - PLATFORM_WIDTH ){
          child.x = 640 - PLATFORM_WIDTH;
          child.velocityX = -MOVING_PLATFORM_SPEED;
        }
      }