Add warning when cloth paint is incorrect size

This commit is contained in:
Wojtek Figat
2025-03-11 23:09:47 +01:00
parent 477c979cdd
commit 5d32bb962f
4 changed files with 12 additions and 1 deletions

View File

@@ -185,7 +185,7 @@ Ray JsonTools::GetRay(const Value& value)
{
return Ray(
GetVector3(value, "Position", Vector3::Zero),
GetVector3(value, "Direction", Vector3::One)
GetVector3(value, "Direction", Vector3::Forward)
);
}