CONTROLS:

Arrows: Move

Space: Shoot

Z: Restart

===

CF2.5 engine you can incorporate to your game easily for reliable object scoping.
Works for both fixed and spawning enemies. To scope basically means to "tie" together many objects during the runtime of the frame.

This is particularly hard to do in CF2.5 and things tends to get really messy if your method of scope isn't right and you have multiple objects tied together.If you don't "Scope" you end up destroying the wrong health bars for the wrong enemies, for example.

Here I tie together: hitbox, animation, Platform Object extension and healthbar for each enemy properly.

===

Use the same base code for many enemy types, includes:

-Platform Object syncronization
-Different Hitbox sizes
-Individual frames
-Individual Directions
-Basic Individual A.I code
-Health Bars
-Basic shooting to kill code
-PC, HTML5 and android compatible

===

StatusReleased
CategoryAssets
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
AuthorRoboHip
Tagsclickteam, Tutorial

Purchase

Buy Now$1.00 USD or more

In order to download this asset pack you must purchase it at or above the minimum price of $1 USD. You will get access to the following files:

Scope_Engine Final.mfa 167 kB

Comments

Log in with itch.io to leave a comment.

What does "scoping" mean or do?

(1 edit)

To scope basically means to "tie" together many objects during the runtime of the frame.

This is particularly hard to do in CF2.5 and things tends to get really messy if your method of scope isn't right and you have multiple objects tied together.

If you don't "Scope" you end up destroying the wrong health bars for the wrong enemies, for example.

Here I tie together: hitbox, animation, Platform Object extension and healthbar for each enemy properly.

Ahhh! Awesome! Will check this out!