You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2025. It is now read-only.
The current documentation is outdated and still references the use of tuples like (f32, f32, f32) and (f32, f32) for 3D and 2D vector operations, respectively.
As of version 0.6.1, the engine now uses the new Vector3 and Vector2 types for improved type safety and consistency. All relevant examples, guides, and API references in the documentation should be updated to reflect this change. Specifically:
Replace (f32, f32, f32) with Vector3 where applicable.
Replace (f32, f32) with Vector2 where applicable.
Add explanations and examples for the new Vector3 and Vector2 types, including their constructors, methods, and benefits compared to the previous tuple-based approach.
(I used GPT-4 for this 🤖)
ElhamAryanpur and Gipson62ElhamAryanpur and Gipson62