Add EXP droplets #2
Labels
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: baz/vampires#2
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
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).