Use in over ref modifier in Math functions input parameters

This commit is contained in:
2025-12-06 23:32:47 +02:00
parent ecf074801f
commit bc4b94d2bc
136 changed files with 1824 additions and 1824 deletions

View File

@@ -494,8 +494,8 @@ namespace FlaxEngine
for (int i = 0; i < vertices; i++)
{
Float3 pos = positionStream.GetFloat3(i);
Float3.Min(ref min, ref pos, out min);
Float3.Max(ref max, ref pos, out max);
Float3.Min(min, pos, out min);
Float3.Max(max, pos, out max);
}
bounds = new BoundingBox(min, max);
}