1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

Fix regression with str() improvements for math types

This commit is contained in:
Ignacio Etcheverry
2016-07-28 14:41:15 +02:00
parent 1dae31f554
commit 2d4c4b6ea9
6 changed files with 44 additions and 23 deletions

View File

@@ -182,5 +182,5 @@ Vector3 Vector3::cubic_interpolate(const Vector3& p_b,const Vector3& p_pre_a, co
# endif
Vector3::operator String() const {
return "("+(rtos(x)+", "+rtos(y)+", "+rtos(z))+")";
return (rtos(x)+", "+rtos(y)+", "+rtos(z));
}