Add EXP droplets #2
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When an enemy dies, they should drop some EXP for the player to collect.
This should have a basic pickup implementation, the main extra this time is that when the player is within the radius of the droplet it should start moving towards the player. We could either have this only activated in a greater overlap sphere or we could be continually checking and have the distance moved each tick scaled by a minimum threshold on the distance between the location of the player and the location of the droplet.
When the player overlaps with the droplet, we want to add the exp from the droplet to the exp counter in the game instance, play any effects then destroy it (or return it to the pool of droplets).