• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 774 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)

761. 发布微信后无法触发mouse_up事件 [ 52%]

...eHandler); } private mouseHandler(e:laya.events.Event):void { var touches: Array<any> = e.touches; if (touches) { for(let i=0;i<touches.length;i++){ let t =touches[i]; let nameIndex =e.touchId + "_" + i; console.log(nameIndex+":"+e.type); } } } 之能收到down和move! 2018-11-02 添加...

来源: Laya_社区 发布时间: 20181102

762. drawToTexture 绘制函数不工作呢 [ 51%]

...xt类中竟然没有pos函数的api~ drawCurves(x:Number, y:Number, points:Array, lineColor:*, lineWidth:Number = 1):void 绘制一系列曲线。 new Laya.Sprite();绘制图形以后,怎么删除释放资源? 如何获取Sprite上用graphics.drawTexture绘制的texture? 微信小游戏在开...

来源: Laya_社区 发布时间: 20190730

763. 局部坐标转全局坐标结果与预期相差甚远 [ 51%]

...获取mouse_move的鼠标坐标 Graphic.drawTextures,第二个参数 pos:Array — 绘制次数和坐标,怎么写啊, 按钮坐标问题导致无法点击 相对屏幕坐标 问题状态 最新活动: 2018-12-20 10:43 浏览: 1429 关注: 2 人 LT • 2018-12-20 09:45 我使用长宽除一半...

来源: Laya_社区 发布时间: 20181219

764. KeyNotFoundException: The given key was not present in the dictionary. unityAir3d1.7.16 [ 51%]

...性列表的key 不能是变量? unity3d sentinel key not found Laya 2.0 Array Dictionary 这些类都没有了? 请问哪里可以下到2.0的源码 关于LAYA2.0下自己实现dictionary的问题 骨骼释放纹理 Templet.TEMPLET_DICTIONARY[this.url] url用错了导致Templet删不掉 问题...

来源: Laya_社区 发布时间: 20180205

765. 我给加载进来的UI界面中一个图片,添加点击更换图片的事件,需要点击两次才能更换图片 [ 51%]

...整下就行了: function showui() { showui.super(this); var arr2 = new Array(); arr2.push(this.dimg); this.dimg.on(Laya.Event.CLICK, this,apeclick2, arr2); } function apeclick2(that) { console.log("apeclick sucess"); that.skin = "../img/5.jpg"; console.log(that); that.zOrder = 1; } 2017-02-18 1 0...

来源: Laya_社区 发布时间: 20170217

766. 多个button如何区分 [ 50%]

...override public function on(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher 在调用函数后面添加区分button的参数应该可以吧 189*****192 • 2017-04-26 09:33 @cyqcyqcyq:我也有另一种解决方式 for(var i:int=0;i<10;i++) { var btn:Button=new Button...

来源: Laya_社区 发布时间: 20170425

767. laya.d3.webxr.core.WebXRSessionManager_API3.0 [ 49%]

... session Returns any supportedFrameRates get supportedFrameRates(): Float32Array | undefined Defined in laya/d3/WebXR/core/WebXRSessionManager.ts:239 A list of supported frame rates (only available in-session! Returns Float32Array | undefined Methods destroy destroy(): void Defined in laya/d3/WebXR/...

来源: Laya3.0_api 发布时间: 20231115

768. 3D场景里面怎么画线条 [ 49%]

...riter3D(); var _color = new Laya.Vector4(1, 255, 0, 1); var _corners = new Array(); _corners[0] = new Laya.Vector3(0,0,0); _corners[1] = new Laya.Vector3(0,0,100); _corners[2] = new Laya.Vector3(0,100,0); _corners[3] = new Laya.Vector3(0,0,100);     phasorSpriter3D.begin(Laya.WebGLContext.LINES, c...

来源: Laya_社区 发布时间: 20180426

769. 预制体模块 · LayaAir3.0文档 · LAYABOX [ 49%]

...gress.png", "resources/UI/progress$bar.png"] ).then(() => { let resArr: Array<any> = [ { url: "resources/prefab/uiDemo/useUI/ChangeTexture.lh", type: Laya.Loader.HIERARCHY }, { url: "resources/prefab/uiDemo/useUI/MouseThrough.lh", type: Laya.Loader.HIERARCHY }, { url: "resources/prefab/uiDe...

来源: Laya3.0_文档 发布时间: 20241014

770. putimagedata 不起作用 [ 48%]

...ort (imageData) { console.log(imageData) var data = imageData.data, copy = Array.prototype.slice.apply(data, [0]), w = imageData.width, h = imageData.height, i = 0, l = data.length, x, y, d for (i; i < l; i += 4) { if (data[i]!== 0) { console.log(data[i]) } x = i / 4 % w y = Math.ceil(i / 4 / w) ...

来源: Laya_社区 发布时间: 20171130