Scrolling Game Development Kit Forum
SGDK Version 1 => Help/FAQ => Topic started by: Jam0864 on 2006-07-17, 12:47:17 AM
-
So far when i die or i kill an enemy they just disapear. can i show them setting on fire or something and then die preferably without script
-
You should be able to activate a function that creates a sprite at the "trigger point" (where the collision happened that caused the death to occur). The sprite can be set to follow a 1-point path that has the right delay on the point to last just long enough to play its animation once. Check the box on the sprite definition for "follow path relative to starting point" and the sprite will stay wherever it gets created as it runs through its animation. Then you can also set the sprite to delete itself at the end of the path so it automatically goes away when it's done animating (if you set the delay properly).
-
Is there a way so after the 'death' sprite gets deleted for the original sprite to start at the start of its :-\ path again
-
Assuming you're handling the enemy's death through collisions, have the collision activate a function. Have this function activate a series of functions:
- delete the sprite (this could also be done from the collision window)
- create the death animation sprite
- create the enemy sprite
This would create the enemy before the death animation completes, though. Not sure if that's a problem.
-
Instead of setting the sprite to delete itself at the end of its path, you could tell it to "Activate EOP_<SpriteName>*", which would cause it to activate all functions on the layer whose name starts with "EOP_MyDyingSprite" (where MyDyingSprite is the name of the sprite definition). You could make EOP_MyDyingSpriteDelete delete all instances of MyDyingSprite and you could make another function EOP_MyDyingSpriteReset create a new instance of MySprite.
-
Cool that works really well thanks ;D
-
the only problem ive had with this method is that if you shoot its right side, the dead sprite will be created 1 space over, becasue its created at the point of contact
-
If you switch sprite A and B in the collision definition, then I think the problem of creating the dead sprite where the bullet was instead of where the sprite was would go away.
-
As an addendum, the process is done by creating a death animation sprite at the "Trigger". The Trigger is the location of Sprite A in any sprite collisions.