大约有 70 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0043 秒)
...一些单独的旋转或者透明的控制,研究了好久matter自带的texture,发现无法满足我的要求,因为用matter的贴图旋转只能使刚体旋转带动贴图旋转,而刚体旋转会导致反弹方向出现偏移。 所以我通过自定义一个layaSprite,绑定到刚体...
来源: Laya_社区 发布时间: 20180808
Laya能不能把底层的代码做好一点儿? 以Texture为例,如下图所示。Texture构造函数所需一个Bitmap类型。 既然所需一个Bitmap类型,那么在Texture里面的属性就应该明确类型为Bitmap。 既然接收的是一个Bitmap的类型,那么你们为何要在T...
来源: Laya_社区 发布时间: 20171214
...件? 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
createFromTexture laya.resource.Texture 文档中写着有这个函数,实际调试的过程中发现没有,怎么破 2018-01-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 qian 赞同来自: 你的发现...
来源: Laya_社区 发布时间: 20180110
...效果,但是发现canvas绘图的bug太多 我想做几张图片(或texture)的混合效果,例如defference,试了几个方法都失败了。心累了,还请官方帮忙一下。看到底是怎么回事。 首先我试了设置Sprite的blendMode,发现没有效果, 然后我试了H...
来源: Laya_社区 发布时间: 20210627
...进了第二方法里 请问在layaIDE里,怎么调用微信小程序API Texture图片能否进行翻转? 使用了u3D导出来的粒子,不停的显示移除并销毁其克隆对象,统计面板的显存和内存就会显示成负数 laya怎么跨域加载图片 怎么讲layaAir里的显示...
来源: Laya_社区 发布时间: 20170802
...如图三),代码如下: public drawScreenshot(): void { if (!this.tempTexture2D) { this.tempTexture2D = new Laya.Texture2D(1280,720); } if (!this.tempTexture) { this.tempTexture = new Laya.Texture(this.tempTexture2D); } // Laya.timer.once(110, this, function(){ let cans = Laya.Browser.document....
来源: Laya_社区 发布时间: 20191230
...import Sprite = laya.display.Sprite import Loader = laya.net.Loader import Texture = laya.resource.Texture import Handler = laya.utils.Handler import Browser = laya.utils.Browser import TiledMap = laya.map.TiledMap import Rectangle = laya.maths.Rectangle import Stat = laya.utils.Stat import TextFile...
来源: Laya_社区 发布时间: 20180116
drawTexture 画出来的数据会有以前的数据 private var iconSpr:Sprite; private var htmlCanvas:HTMLCanvas; private var texture:Texture; private var xNum:int = 0; private var yNum:int = 0; private var img:Image; public function TestView() { img = new Image("comp/lhjicon_5.png"); img.x = 640;...
来源: Laya_社区 发布时间: 20180113
...as(100, 100, 0, 0);//把精灵绘制到canvas上面 * var texture:Texture = new Texture(htmlCanvas);//使用htmlCanvas创建Texture * var sp:Sprite = new Sprite().pos(0, 200);//创建精灵并把它放倒200位置 * sp.graphics.drawTexture(texture);...
来源: Laya_社区 发布时间: 20180719