Redid collision system -> No more tool-glitches

This commit is contained in:
=
2017-10-20 17:42:30 +02:00
parent 2d74599749
commit aa1c0c01a4
5 changed files with 18 additions and 13 deletions

View File

@ -24,7 +24,12 @@ public class PowerMushroom extends Tool {
}
@Override
protected Geometry createCollisionBounds() {
protected Geometry createWorldCollisionBounds() {
return this;
}
@Override
protected Geometry createPlayerCollisionBounds() {
return this;
}
}