Has anyone already developed a custom javascript that would automatically include animation sequence data in the exported files. eg walk, run? This could be based on detecting identical name parts and build a list containing the frames.
That is automatically putting in lines such as this (that I add manually in a separate LUA file myself currently)
local sequenceData = { { name="prestall", frames={ 3,6 }, time=200, loopCount=0 }, { name="canopy", frames={ 5 }, time=1000, loopCount=0 }, { name="freefall", frames={ 4 }, time=1000, loopCount=0 }, { name="running", frames={ 1,2,3,4,5,6 }, time=1000, loopCount=0 },