Stencyl prototype of an old game called SnowFlakes available for download and on StencylForge
Read all posts about "Snowflakes" gameSnowflakes
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 …
Read all posts about "Snowflakes" gameToday 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 …
Read all posts about "Snowflakes" game