1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

msdfgen: Update to 1.12

This commit is contained in:
Rémi Verschelde
2025-01-09 21:16:08 +01:00
parent 24d74510e5
commit c97c7b73e6
41 changed files with 1038 additions and 363 deletions

View File

@@ -24,8 +24,8 @@ struct Vector2 {
}
/// Sets individual elements of the vector.
inline void set(double x, double y) {
this->x = x, this->y = y;
inline void set(double newX, double newY) {
x = newX, y = newY;
}
/// Returns the vector's squared length.