大约有 1,307 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
Laya_社区(1120) Laya2.0_文档(69) Laya3.0_文档(48) Laya2.0_示例(27) Laya_示例(24) Laya3.0_api(17) laya_api(1) Laya2.0_api(1)
... return list; } function updateItem(cell, index) { console.log(index); // console.log(cell.dataSource); cell.setImg(cell.dataSource[index]); cell.on(Laya.Event.CLICK, function() { console.log("click") }) } function onSelect(index) { ...
来源: Laya_社区 发布时间: 20180724
...ics.I.world world.RayCast(function(fixture,point,normal,fraction){ console.log("fixture",fixture) console.log("point",point) console.log("normal",normal) console.log("fraction",fraction) },{ x:300, y:100 },{ x:300, y:1000 }) //每碰到一个物体就会触发一次回调函数,没碰到物体就...
来源: Laya_社区 发布时间: 20190519
...are.imageUrl = ShareImgUrl; let a = await share.shareAppMessage(); console.log(a) } 转换后代码 onShareClick() { // return __awaiter(this, void 0, void 0, function* () { // let share = SDKCenter.getShare(); // share.title = ShareNormal; // share.imageUrl = ShareImgUrl; // let a = yield sha...
来源: Laya_社区 发布时间: 20180521
...窗的时候,用确定按钮做复制,自定义弹窗参考:https://blog.csdn.net/qq_27437967/article/details/70858262 复制到剪贴板代码如下:(窗口有点难看...) function copyText(str) { new ShowDiv(str); } function ShowDiv(str) { var _this = this; this.AppConfirm...
来源: Laya_社区 发布时间: 20181214
....onAssetLoaded), null, null, 2, false); } onAssetLoaded(texture) { console.log(texture.url); // 恢复默认并发加载个数。 if (++numLoaded == 3) { Laya.loader.maxLoader = 5; console.log("All done."); } } } new Loader_Sequence();module laya { import Texture = Laya.Texture; import Handler = Lay...
来源: Laya2.0_示例 发布时间: 20241118
...然说laya可以通过一些方法获取缩放的参数,例如 console.log(Laya.stage._canvasTransform); console.log(Laya.stage.clientScaleX); console.log(Laya.stage.clientScaleY); 但是,我的div,在laya还没初始化完成的时候,就已经有了吧。这时候,应该无法在js里...
来源: Laya_社区 发布时间: 20171026
... 每刷新一次 每次返回的值都不一样,还不准确,但是log出的box单元格是同一个 localToGlobal: function (ele, flag) { var point = new laya.maths.Point(ele.pivotX, ele.pivotY); // flag = flag ? true : false; return ele.localToGlobal(point, flag); }...
来源: Laya_社区 发布时间: 20171102
...件 document.addEventListener("touchstart",function(data){ Test.call("wxRegLogin",a); if(data.test == "test"){ var integralMall = new IntegralMall(); Laya.stage.addChild(integralMall); } }); android 里面的方法 public static void wxRegLogin(boolean bOpen){ Log.e("LayaAir回调结果", "=========...
来源: Laya_社区 发布时间: 20180103
...t1(b) { this.b = b; } //父类方法a t1.prototype.a = function(){ console.log(this.b.x+""+this.b.y); } return t1; }()); ========================= /* * t2继承父类t1 */ var t2 = (function () { function t2() { t2.super(); } t2.prototype.a = function(){ console.log('2222'); } return t2; }()); ...
来源: Laya_社区 发布时间: 20180104
...ode 节点 */ base_remove(node){ if(node.numChildren<=0)return; console.log('移除',node.name); let obj; for(let i=node.numChildren-1;i>=0;i--){ obj= node.getChildAt(i); obj.destroy(); } } 或者 /* 从舞台移除模型对象 @param node 节点 */ base_remove(node){ if(node.numChildren<...
来源: Laya_社区 发布时间: 20191119