Improved logs formating for vectors
This commit is contained in:
parent
20c287d365
commit
e067a3d8f3
1 changed files with 1 additions and 1 deletions
|
@ -665,6 +665,6 @@ public class Vector3 implements Cloneable {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Vector3 [" + x + "," + y + "," + z + "]";
|
||||
return String.format("Vector3 [%.3f %.3f %.3f]", x, y, z);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue