Is 1.1.1 still the latest version? Because man, I ran into show-stopping bugs within minutes, and had to dig into the code to fix them.
First off: The exception handler at line 242 crashes when triggered because "use strict" is on and "e" is undefined. (To fix, change line to "var e = ..."
Secondly, you cannot preload stuff from SvActor or SvEnemy because line 240 naively converts all characters in the string to lower case, turning loadSvEnemy into loadSvenemy, which crashes the plugin when you try to pull that function from ImageManager. (To fix, remove the ".toLowerCase()" at the end of line 40 and assume the user is smart enough to handle their own capitalization, which to be fair is a safer bet than assuming the user is smart enough to delve into the code to figure out why "SvEnemy" isn't a valid key when the help file claims it is.)
I mean, it took half an hour to diagnose and fix these bugs, but still, it makes me really nervous. Is there a more up-to-date version of this plugin anywhere?