大约有 104 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
...渲染的画面显示在ui上 laya3d camera.rendertarget 返回的时rendertexture 不能赋值给image的texture 2019-05-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 骑乐在途 赞同来自: 同问 2020-06...
来源: Laya_社区 发布时间: 20190516
...in = "res/test.png"; image2.skin = "res/test.png"; 这里(image2.source as Texture).bitmap.useNum的值不应该是2才正常吗?这个位图数据被引用了两次 2017-04-21 0 1 分享 微博 QZONE 微信 cuixueying 赞同来自: 引用的useNum表示被多少个Texture引用了,上面的情...
来源: Laya_社区 发布时间: 20170420
...-01-11 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: /** * 截取Texture的一部分区域,生成新的Texture,如果两个区域没有相交,则返回null。 * @param texture 目标Texture。 * @param x 相对于目标Texture的x位置。 * @param y 相对于目标Texture的y位置...
来源: Laya_社区 发布时间: 20180110
UI相关问题 LayaAir引擎 Image 的 texture 和skin 的区别 如下图 :556-557行的功能和559-562行有什么区别,我项目中556-557写不行,必须559-562写才行!不解 附件 : --> 2018-02-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20180228
...; this.htmlvideo.video.addEventListener("loadedmetadata",()=>{ var videoTexture:Laya.VideoTexture = new Laya.VideoTexture(); videoTexture.video = this.htmlvideo.video; videoTexture.video.play(); videoTexture.video.loop = true; var texture2D = new Laya.Texture2D(videoTexture.video.videoWidth,video...
来源: Laya_社区 发布时间: 20240305
...on onClick():void { image.skin="bg.jpg"; } } }方法2:使用graphics.drawTexture的方式】 package { import laya.display.Sprite; import laya.events.Event; import laya.net.Loader; import laya.resource.Texture; import laya.utils.Handler; public class LayaAirDemo { private var sp:Sprite; public fun...
来源: Laya_社区 发布时间: 20170628
...; this.htmlvideo.video.addEventListener("loadedmetadata",()=>{ var videoTexture:Laya.VideoTexture = new Laya.VideoTexture(); videoTexture.video = this.htmlvideo.video; videoTexture.video.play(); videoTexture.video.loop = true; var texture2D = new Laya.Texture2D(videoTexture.video.videoWidth,video...
来源: Laya_社区 发布时间: 20240305
... laya.display.Stage; import laya.resource.HTMLCanvas; import laya.resource.Texture; import laya.ui.Image; import laya.utils.Handler; import laya.webgl.WebGL; public class LayaAirDemo { private var img:Image; public function LayaAirDemo() { Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_...
来源: Laya_社区 发布时间: 20170704
...件? var boxstr = "ui/buildsmall.png"; var box = new Laya.Sprite(); var texture = Laya.loader.getRes(boxstr); box.graphics.drawTexture(texture); var arr = {data: StorageRoom.map_storageData[0][0],tag:0}; box.on(Laya.Event.MOUSE_UP,this,this.onclick,[arr]); var _proto = StorageUILayer.prototype;...
来源: Laya_社区 发布时间: 20171113
...变加载图片的大小是无效的,不过你可以通过先clear在drawTexture的方法设置下,代码如下: var sprite = new laya.display.Sprite(); sprite.loadImage("comp/bg.png",0,0,0,0,Handler.create(this,function(texture:laya.resource.Texture){ sprite.graphics.clear(); ...
来源: Laya_社区 发布时间: 20160711