>>467
邪道というか、image は毎回画像がロードされるので無駄。
asd の clip 指定は画像ロードは一回だけなので軽い。
asd を自動生成するようにするか、あるいは、あー、kag には imageLeft/imageTop をいじる口がでてないのか

Override.tjs に

AnimationLayer.setOptions(elm) = function(elm) {
global.KAGLayer.setOptions(elm);
imageLeft = - +elm.clipleft if elm.clipleft !== void;
imageTop = - +elm.cliptop if elm.cliptop !==void;
};

こんなかんじで口を足してしまって、

[layopt clipleft=&tf.left cliptop=&tf.top]

としていじれるようにして、ロード以降はそれを使うと良い。はみでるとエラーなんで注意な