hi, i want to modifie this script: http://wiki.unity3d.com/index.php/FbxAnimListPostprocessor
so it first reads the name, and then the animation data
i already tried a few things, poked a bit here: The 30 Minute Regex Tutorial - CodeProject
but cant seem to get it working
so i want to change this (works) :
Regex regexString = new Regex(" *(?<firstFrame>[0-9]+) *- *(?<lastFrame>[0-9]+) *(?<loop>(loop|noloop| )) *(?<name>[^\r^\n]*[^\r^\n^ ])",
to something like this
(this code doesnt work)
:
Regex regexString = new Regex(" *(?<name>*[^ ]) *(?<firstFrame>[0-9]+) *- *(?<lastFrame>[0-9]+) *(?<loop>(loop|noloop| |\n))",