Hi, I found funny typo
bool UDestructibleComponent::IsAnySimulatingPhysics() const
{
return !!BodyInstance.bSimulatePhysics;
}
Best regards
Pierdek
Hi, I found funny typo
bool UDestructibleComponent::IsAnySimulatingPhysics() const
{
return !!BodyInstance.bSimulatePhysics;
}
Best regards
Pierdek
Well, fix it and make a pull request
This is not an error. !! is used here to convert from a uint32 to bool.