Friday, September 11, 2009

Finished


Even though I may be talking to myself, I think I will post this anyways.

I have finally finished the tic tac toe engine.(psst, those aren't real scores.) and have learned quite a few things:(Thanks in no small part to the denizens of gamedev.net forums. Topic:
here )

-To completely clear an array, simply add the line: arrayName = new Array();
-You may clear display objects from the stage by putting their references in an array, and using similar syntax to this:

for(stuff){
removeChildAt(arrayName[stuff]);
}

Now I am asking myself: "Now what?" Perhaps I will be expanding upon this engine, adapting it for certain needs. Maybe do a little Project Euler in C++. For now, though, I am beaming out. Good bye.

No comments:

Post a Comment