zeng286498789 How can we add a prefix to the names of all bones, slots, and attachments in the hierarchy
Nate See 正则表达式 (regular expression): http://zh.esotericsoftware.com/spine-tree#%E6%9F%A5%E6%89%BE%E5%92%8C%E6%9B%BF%E6%8D%A2 Find: (.*) The .* matches everything and the parenthesis store the match in $1. Replace: a$1b This replaces the match with a, then $1 is what was matched, then b.