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
Create a spritesheet with a Sprite with a name that includes parenthesis. Ex: "Sprite_Jump(0)"
Add it to Bulk Renamer
Add a rule so to rename part of it. Ex: "Sprite" -> "Pic"
Rename
Notice the Sprite is not renamed
The issue is the regex to find these characters in the renamer. Since it doesn't escape the original name, it will fail to replace it in the meta as it won't be able to find it with the invalid regex as the old name.
The fix is to escape the original name.
The text was updated successfully, but these errors were encountered:
All special characters that we ban on Assets are actually allowed on Sprites. We can go ahead and remove all characters from the invalid list for Sprites.
Report: https://forum.unity.com/threads/mulligan-renamer.532182/#post-7880896
Repro:
The issue is the regex to find these characters in the renamer. Since it doesn't escape the original name, it will fail to replace it in the meta as it won't be able to find it with the invalid regex as the old name.
The fix is to escape the original name.
The text was updated successfully, but these errors were encountered: