You've already forked godot
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:
4
thirdparty/msdfgen/core/Vector2.hpp
vendored
4
thirdparty/msdfgen/core/Vector2.hpp
vendored
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user