mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #107408 from Ivorforce/node-path-string-explicit
Make conversions from `NodePath` to `String` explicit.
This commit is contained in:
commit
ae484828bb
39 changed files with 99 additions and 99 deletions
|
|
@ -1642,7 +1642,7 @@ String Variant::stringify(int recursion_count) const {
|
|||
case STRING_NAME:
|
||||
return operator StringName();
|
||||
case NODE_PATH:
|
||||
return operator NodePath();
|
||||
return String(operator NodePath());
|
||||
case COLOR:
|
||||
return String(operator Color());
|
||||
case DICTIONARY: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue