You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regression from #87634 or b4d0a09 to be more precise.
Also probably related, the following script:
extends Node
func _init()->void:self._
Triggers a leftover print_line which says "Empty identifier found.". Haven't looked into it in depth but the common point between parse_identifier and parse_get_node seems to be previous.get_identifier(); which I suspect is empty in this cases for some reason, instead of containing _.
Tested versions
4.3.beta1, 4.3.beta3
System information
Linux Mint 21.3 (Virginia)
Issue description
When working with $ shorthand node paths in gdscript, a single underscore node name gets ignored.
Example:
Here,
$_/Node
gets recognised as/Node
,$Sibling/_/Node
gets recognised asSibling/Node
.Steps to reproduce
_
$_/<Grandchildname>
Minimal reproduction project (MRP)
bugreport_underscore_nodename_absolute_path.zip
The text was updated successfully, but these errors were encountered: