大约有 297 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)
...(img); }else { for (var i=0;i < this._stateNum;i++){ this._sources.push(Texture.createFromTexture(img,0,height *i,width,height)); } } AutoBitmap.setCache(key,this._sources); } if (this._autoSize){ this._bitmap.width=this._width || width; this._bitmap.height=this._height || height; if (this._text)...
来源: Laya_社区 发布时间: 20170516
...; i < splitArr.length; i++) { var te:Texture = _sources[splitArr[i]] as Texture; if (_align != "right") { this.graphics.drawTexture(te, i * te.width, 0, te.width, te.height); ...
来源: Laya_社区 发布时间: 20170601
texture可以加载一个canvas吗 var share = sharedCanvas.getContext('2d'); share.fillStyle="#0000ff"; share.fillRect(20,20,150,100); var _texture = new Laya.Texture(sharedCanvas); var sp2 = new Laya.Sprite(); sp2.x = 300; sp2.graphics.drawTexture(_texture,0,0,100,100); Laya.stage.addChild(sp2); ...
来源: Laya_社区 发布时间: 20171113
...有的AnimationClip呢? matter中layasprite怎么改变图片大小? Texture图片能否进行翻转? ios14系统下 blendMode='lighter' 图片异常 Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 编辑了图片 执行代码说加载不出来资源 这个是怎么回事? ...
来源: Laya_社区 发布时间: 20151228
Texture.create截取一张图片的区域纹理后怎么把这个区域纹理保存成新的图片, var texture = Laya.Texture.create(this._headBitmapData, 100, 100, 200, 200);怎么获取texture的图片base64数据,或者是图片数据。用texture.bitmap.src获取的图片数据还是原图...
来源: Laya_社区 发布时间: 20170925
...据域canvas // this.view.image_rank_list //要绘制的图片 // var rankTexture = new Laya.Texture(wxMgr.getOpenDataCanvas()); // rankTexture.bitmap.alwaysChange = true;//小游戏使用,非常费,每帧刷新 // console.log(rankTexture); // var img = wxMgr.getOpenDataCanvas().toDataURL("image...
来源: Laya_社区 发布时间: 20180426
在2.0中如何将Browser.createElement('canvas')转为可用的Texture 在 1.0中可以这样写: //创建一个画板 var canvas = Laya.Browser.createElement('canvas'); //设置大小 canvas.width = Laya.stage.width; canvas.height = Laya.stage.height; ...
来源: Laya_社区 发布时间: 20190411
请问native上怎么用drawToCanvas创建Texture2d? 我们要用截图drawToCanvas创建Texture2d,传进3d效果里面,但现在试了各种方法都不行, 2018-12-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 ...
来源: Laya_社区 发布时间: 20181210
...显示问题 var sprite:Sprite=new Sprite(); sprite.pos(0, 0); var texture:Texture=new Texture(Browser.window.sharedCanvas); if (texture) { // texture.bitmap.alwaysChange=true; //小程序使用,非常费,这个参数可以根据自己的需求适当调整,如果内容不变可以不用...
来源: Laya_社区 发布时间: 20180725
求问Texture和Texture2D的区别,和使用问题 对用引擎中这两个类的分别不太清楚,有以下几个问题:1、Texture和Texture2D有什么区别?我发现自己用Laya.loader.load的图片或ui加载的就是Texture,加载.ls/.lh自动生成的贴图就是Texture2D 2、...
来源: Laya_社区 发布时间: 20180314