mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Minor fixes to Vector4
This commit is contained in:
@@ -132,7 +132,7 @@ double Vector4i::length() const {
|
||||
}
|
||||
|
||||
Vector4i Vector4i::abs() const {
|
||||
return Vector4i(ABS(x), ABS(y), ABS(z), ABS(w));
|
||||
return Vector4i(Math::abs(x), Math::abs(y), Math::abs(z), Math::abs(w));
|
||||
}
|
||||
|
||||
Vector4i Vector4i::sign() const {
|
||||
|
||||
Reference in New Issue
Block a user