You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-19 14:31:59 +00:00
Always add decimal when printing float
This commit is contained in:
@@ -283,7 +283,7 @@ next4:
|
||||
}
|
||||
|
||||
Rect2::operator String() const {
|
||||
return "[P: " + position.operator String() + ", S: " + size + "]";
|
||||
return "[P: " + position.operator String() + ", S: " + size.operator String() + "]";
|
||||
}
|
||||
|
||||
Rect2::operator Rect2i() const {
|
||||
|
||||
Reference in New Issue
Block a user