summaryrefslogtreecommitdiffstats
path: root/src/core/Vector3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Vector3.cpp')
-rw-r--r--src/core/Vector3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Vector3.cpp b/src/core/Vector3.cpp
index 7e0f2ee..a22bdc0 100644
--- a/src/core/Vector3.cpp
+++ b/src/core/Vector3.cpp
@@ -327,7 +327,7 @@ Vector3 Vector3::snapped(const float by)
Vector3::operator String() const
{
- return String(); // @Todo
+ return String::num(x) + ", " + String::num(y) + ", " + String::num(z);
}