Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
This tutorial explains how to use an array for hitTest purposes.
Most tutorials show how to duplicate movieClips for games (or other purposes), but when looked at carefully are very inefficient. This tutorial looks at creating an array which holds the ‘names’ of the duplicated clips, then when we do a loop to check for hits, the loop only searches for clips that exist. More will be explained later.
Included Files:
hitTestArray.fla – Source code for this tutorial.
Theory
Generally, people will create their actionScript to duplicate a movie, then hitTest from 0 to the most recent clip, this is highly inefficient, because if your game has been going on for say, an hour, each frame could be checking thousands of clips (even if they are not there!) Therefore we need a system to look for only the clips that are currently ‘active’.
What we will be doing is creating an array, then every time a movieClip is duplicated it is given a ‘name’ and that name is put in the array. Then when we do a hitTest loop, we will step through all the names in the array.
When a movieClip is removed, its name will be removed from the array.
There are two ways to implement this kind of system. I could write a tutorial about making a FILO stack in flash (using push/pop) however this wouldn’t be effective in a game environment as things may get removed out of the order they are brought into the environment.