mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-05 00:01:55 +00:00
GRIM: Don't check collisions if the collision scale is 0.
This commit is contained in:
parent
d9091ce70a
commit
da552f96f8
@ -551,6 +551,11 @@ bool Actor::isTurning() const {
|
||||
void Actor::moveTo(const Math::Vector3d &pos) {
|
||||
// This is necessary for collisions in set hl to work, since
|
||||
// Manny's collision mode isn't set.
|
||||
if (_collisionScale == 0.f) {
|
||||
_pos = pos;
|
||||
return;
|
||||
}
|
||||
|
||||
if (_collisionMode == CollisionOff) {
|
||||
_collisionMode = CollisionSphere;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user