- disable implicit conversions from float to TAngle

This commit is contained in:
Christoph Oelckers 2022-08-26 00:56:53 +02:00
commit f0fbdba593
66 changed files with 425 additions and 374 deletions

View file

@ -262,7 +262,7 @@ double UDMFParserBase::CheckCoordinate(FName key)
DAngle UDMFParserBase::CheckAngle(FName key)
{
return DAngle(CheckFloat(key)).Normalized360();
return DAngle::fromDeg(CheckFloat(key)).Normalized360();
}
bool UDMFParserBase::CheckBool(FName key)