[]webgl 模式下 用graphics.drawTexture 平铺图片 图片不显示是什么原因
this.texture1 = Laya.loader.getRes('res/images/bg1.png');
this.texture2 = Laya.loader.getRes('res/images/bg2.png');
var repeatX = 8 ;
var repeatCount = Math.ceil(stageW / repeatX);
for(let i = 0; i < repeatCount ; i++)
{
this.bg1.graphics.drawTexture(this.texture1,8*i,0);
this.bg2.graphics.drawTexture(this.texture2,8*i,0);
}
canvas下可以显示 webgl模式 平铺 图片 图片不显示
this.texture2 = Laya.loader.getRes('res/images/bg2.png');
var repeatX = 8 ;
var repeatCount = Math.ceil(stageW / repeatX);
for(let i = 0; i < repeatCount ; i++)
{
this.bg1.graphics.drawTexture(this.texture1,8*i,0);
this.bg2.graphics.drawTexture(this.texture2,8*i,0);
}
canvas下可以显示 webgl模式 平铺 图片 图片不显示
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
qian
赞同来自:
如果还有问题请上传一个重现的demo我们测试一下
谢谢