Search Issue Tracker
Won't Fix
Votes
0
Found in
4.5.0b1
Issue ID
587828
Regression
Yes
Minions stop doing damage to the player (2D regression?)
To reproduce:
1. Download and import Unity Projects: 2D Platformer
2. Let two minions push you from different sides (as shown in the attached screenshot)
3. Notice that when one minion pushes you from the left side and another from the right side, the player does not take any damage
Won't fix because:
This is not a 2D physics bug, it's how the logic of the demo is written.
If you look at how player damage is dealt with in the "PlayerHealth" script you'll see that its based upon "OnCollisionEnter2D" so if the enemy continuous to stay in contact then it won't produce any more damage.
To counter this, the developers of this made it so that the player jumps away however when two enemy are on either side then it won't jump away.
A potential alternate way to deal damage here is to use "OnCollisionEnter2D" and "OnCollisionStay2D" so you continue to get damage if you stay in contact.
I believe the Learn team did this because when it was written, there was a problem with using OnCollisionStay2D as this wasn't being emitted when the Hero changed direction (change of scale) however that has been fixed in 4.5
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- ScrollView elements are not restored to their original positions after removing a Layout Group with Undo action
- "Assembly with name already exists" errors are thrown when two packages with different technical names resolve to the same namespace
- A Select Scene Entry is added to Undo History when Deleting while a Scene is selected in the Hierarchy
- The Add Component Menu's back arrow accumulates phantom levels when the Menu is repeatedly opened into a Category and closed without selecting
- Advanced dropdown stops applying the Search Filter while the search text remains after clicking the header back Button during a Search
Add comment