You are welcome, if you are using it please post screenshots, I am always interested to see it in action.
Release 1.14.0 Added C3 web worker support.
Release 1.14.1 Fix PMA bug regression (introduced in 1.11.0)
Thanks to Erikari over at Esoteric for noticing the PMA issue.
I added Web Worker support for spine-ts in the SharedAssetManager class, which is used in the Construct 3 Spine plugin. This enables us to use spine-ts and the Spine addon with Construct 3 in Web Worker mode (which can reduce FPS jank in a web browser, decoupling from the main browser thread.)
The main changes for web worker: use fetch() instead of img.src (loading a HTMLImageElement), use ImageBitMap instead of HTMLImageElement, enable OffscreenCanvas instead of HTMLCanvasElement.
Construct 3 web worker description here:
construct.net/en/blogs/ashleys-blog-2/performance-isolation-html5-1512