diff options
| author | George L. Albany <Megacake1234@gmail.com> | 2024-11-03 05:10:14 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-03 05:10:14 +0000 |
| commit | 70f9c12cfbcea6dff89b2a6f4868a9e6fe3866f8 (patch) | |
| tree | f202e4a27092f0fdd9d579eb46e6828ecb4673e1 /core/math/vector3.cpp | |
| parent | 9043ceac65972c4195dd71f15a8a1cc7aa72985f (diff) | |
| parent | a684ee1dec108bb1a050f07ec3dd73fd5ef02dbc (diff) | |
| download | redot-engine-70f9c12cfbcea6dff89b2a6f4868a9e6fe3866f8.tar.gz | |
Merge pull request #834 from Spartan322/merge/c6c464c
Merge commit godotengine/godot@c6c464c
Diffstat (limited to 'core/math/vector3.cpp')
| -rw-r--r-- | core/math/vector3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/vector3.cpp b/core/math/vector3.cpp index e1794222ad..7560528bb9 100644 --- a/core/math/vector3.cpp +++ b/core/math/vector3.cpp @@ -167,7 +167,7 @@ bool Vector3::is_finite() const { } Vector3::operator String() const { - return "(" + String::num_real(x, false) + ", " + String::num_real(y, false) + ", " + String::num_real(z, false) + ")"; + return "(" + String::num_real(x, true) + ", " + String::num_real(y, true) + ", " + String::num_real(z, true) + ")"; } Vector3::operator Vector3i() const { |
