代码:[code] Laya.loader.load("res/Particles/Tail.part", Laya.Handler.create(this, this.OnPariticleAssetsLoaded), null, Laya.Loader.JSON);
OnPariticleAssetsLoaded(setting:Laya.ParticleSetting)
{
let sp = new Laya.Particle2D(setting);
sp.pos(200, 200);
sp.emitter.start();
sp.play();
Laya.stage.addChild(sp);
sp.rotation = 80;
}[/code]附件中为旋转80、45、0角度时的现象
问题补充:
Laya.init(720, 1280);这样就正常了。
Laya.init(720, 1280, laya.webgl.WebGL);这样就出现这个问题,应该在webgl模式下有问题。



附件:
Particles.zip