Refactor engine to support double-precision vectors

This commit is contained in:
Wojtek Figat
2022-06-13 00:40:32 +02:00
parent f82e370392
commit a881c90b2e
744 changed files with 19062 additions and 12467 deletions

View File

@@ -135,9 +135,9 @@ public:
/// <summary>
/// Gets the buffers width and height (in pixels).
/// </summary>
API_PROPERTY() FORCE_INLINE Vector2 GetSize() const
API_PROPERTY() FORCE_INLINE Float2 GetSize() const
{
return Vector2((float)_width, (float)_height);
return Float2((float)_width, (float)_height);
}
/// <summary>