ksys/phys: Rename RigidBody flag 8 (IsAddedToWorld)

Forgot to do this in a previous commit.
This commit is contained in:
Léo Lam 2022-03-23 10:06:09 +01:00
parent cfb1f1e074
commit 0b636cdd02
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
2 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ bool RigidBody::isActive() const {
}
bool RigidBody::isAddedToWorld() const {
return mFlags.isOn(Flag::_8);
return mFlags.isOn(Flag::IsAddedToWorld);
}
bool RigidBody::isAddingBodyToWorld() const {

View File

@ -68,7 +68,7 @@ public:
IsSensor = 1 << 0,
UpdateRequested = 1 << 1,
_4 = 1 << 2,
_8 = 1 << 3,
IsAddedToWorld = 1 << 3,
_10 = 1 << 4,
_20 = 1 << 5,
_40 = 1 << 6,