home *** CD-ROM | disk | FTP | other *** search
- class com.KidFighting.objects.CShadow extends com.KidFighting.objects.CObject
- {
- var ani;
- var _x;
- function CShadow()
- {
- super();
- this.ani = _root.shadow_GUI.shadow.duplicateMovieClip("shadow" + _root.shadow_GUI.getNextHighestDepth(),_root.shadow_GUI.getNextHighestDepth());
- }
- function follow(aMc)
- {
- var mc = aMc;
- this.ani.onEnterFrame = function()
- {
- this._x = mc._x;
- };
- }
- }
-