一位论坛大V说可以使用html+图集动画,使用ani的标签,但是我用了后会提示我 [error] Undefined class: ani
这是我哪里用的不对吗?
Laya.loader.load("res/1.json", Handler.create(this, createAnimation), null, Loader.ATLAS);
public function createAnimation():void
{
var appendHtml:HTMLDivElement=new HTMLDivElement();
appendHtml.innerHTML="aa==<ani src='res/1.png'></ani>";
Laya.stage.addChild(appendHtml);
}