[LayaAir 2.0]在2.0中如何将Browser.createElement('canvas')转为可用的Texture
在 1.0中可以这样写:
//创建一个画板
var canvas = Laya.Browser.createElement('canvas');
//设置大小
canvas.width = Laya.stage.width;
canvas.height = Laya.stage.height;
ctx = canvas.getContext('2d');
Laya.stage.graphics.clear(false);//清空绘制命令。
var textture = new Laya.Texture(canvas);
textture.bitmap.alwaysChange = true;//小游戏使用,非常费,每帧刷新
Laya.stage.graphics.drawTexture(textture);
但是2.0 就不行了。报错误:
Uncaught TypeError: value._addReference is not a function
有没有知道 2.0中应该怎么做的大神。
//创建一个画板
var canvas = Laya.Browser.createElement('canvas');
//设置大小
canvas.width = Laya.stage.width;
canvas.height = Laya.stage.height;
ctx = canvas.getContext('2d');
Laya.stage.graphics.clear(false);//清空绘制命令。
var textture = new Laya.Texture(canvas);
textture.bitmap.alwaysChange = true;//小游戏使用,非常费,每帧刷新
Laya.stage.graphics.drawTexture(textture);
但是2.0 就不行了。报错误:
Uncaught TypeError: value._addReference is not a function
有没有知道 2.0中应该怎么做的大神。
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
痛饮一杯苦酒
赞同来自:
刘亮
赞同来自: