Create a Flash game like Snowflakes – AS3 version
As announced in Create a Flash game like Snowflakes, here it is the AS3 version. I used the same comments to help you understanding the conversion. package { import flash.display.Sprite; import flash.ui.Mouse; import flash.events.*; public class snowflakesas3 extends Sprite { // max stars on stage var max_stars = 20; // current stars on stage var … Create a Flash game like Snowflakes – AS3 version
Create a Flash game like Snowflakes
Today I enjoyed a cute game called Snowflakes and I am about to show you how to create the main engine behing the game. The game is simple: a bunch of stars (snowflakes in the game, but I guess the author new saw the snow…) is falling from the sky, and you can affect their … Create a Flash game like Snowflakes