大约有 2,611 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0066 秒)
Laya_社区(1996) Laya3.0_api(163) laya_api(112) Laya2.0_api(107) Laya2.0_文档(82) Laya_示例(68) Laya2.0_示例(51) Laya3.0_文档(32)
...载方式 第一次发,不足之处还请见谅 class RES extends Laya.EventDispatcher{ // 资源组 public static groups: any; // 资源 public static resources: any; // 完成加载资源配置文件 public static ONLOADEDRESJSON: string = "onLoadedResJson"; // 资源配置文件加载出错 pub...
来源: Laya_社区 发布时间: 20161011
...题。最好可以附上demo 2018-10-25 0 1 分享 微博 QZONE 微信 S_eVent 赞同来自: 目前回退回1.7.20版本可以解决此问题,1.7.21和1.7.22均存在此问题,未升级到正式版的1.7.21beta版本不会出现此问题 2018-10-26 0 1 分享 微博 QZONE 微信 为什么被折...
来源: Laya_社区 发布时间: 20181025
...css就解决了 外层(被遮挡的层){ pointer-events: none; } 内层(要发生事件的层){ pointer-events: auto; } pointer-events属性本身有很多取值,但只有none和auto可以用在浏览器上,其他都只...
来源: Laya_社区 发布时间: 20170517
...ference _removeReference _setCPUMemory _setCreateURL _setGPUMemory destroy event gpuCompressFormat hasListener isCreateFromURL off offAll offAllCaller on once setImageData setPixlesData setSubPixelsData destroyUnusedResources Constructors constructor new Texture2DArray(width: number, height: number,...
来源: Laya3.0_api 发布时间: 20231115
...class HTMLDivElement 构造中监听一下 this.on(Laya.Event.MOUSE_OVER, this, this._onMouseOver); this.on(Laya.Event.MOUSE_OUT, this, this._onMouseOut); this.on(Laya.Event.MOUSE_MOVE, this, this._onMouseMove); 增加如下3个方法 ...
来源: Laya_社区 发布时间: 20200724
...例子我们本地查下package { import laya.display.Sprite; import laya.events.Event; import laya.net.Loader; import laya.utils.Stat; import laya.webgl.WebGL; public class HtmlDemo { private static var sp:Sprite; public function HtmlDemo() { Laya.init(800, 480,WebGL); Stat.show(); sp=new Sprite();...
来源: Laya_社区 发布时间: 20160905
... else { this._forgetMode(); } // 添加取消事件 this.lb_cancel.on(Laya.Event.CLICK, this, () => { // 返回登陆页 Laya.Scene.open("Auth.scene"); }); // 遍历数组添加事件 this._arrInput.forEach((element, index) => { element.on(Laya.Event.FOCUS, this, this._onInputEvent, [element, ...
来源: Laya_社区 发布时间: 20200410
...te3D.addComponent(Laya.Rigidbody); //添加键盘事件 Laya.stage.on(Laya.Event.KEY_DOWN, this, onKeyDown); this.collider = this.scene.getChildByName("Collider"); this.collider.active = false; //是否开启debug模式 Laya.stage.on(Laya.Event.MOUSE_UP, this, drawCollider); } function onKeyDown(e) ...
来源: Laya_示例 发布时间: 20241118
... 怎么监听啊 ANDORID 切后台 怎么监听啊? Laya.stage.on(Laya.Event.BLUR, this, this._on_blur); Laya.stage.on(Laya.Event.FOCUS, this, this._on_focus);这个没有用啊。 2018-05-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20180522
MOUSE_UP事件 当我使用 for(var i=0;i<3;i++){ this["_role_"+i].on(Event.MOUSE_DOWN,this,this.clickDown) ; this["_role_"+i].on(Event.MOUSE_MOVE,this,this.clickMove); // this["_role_"+i].on(Event.MOUSE_UP,this,this,clickUp); }这样的方式添加监听时,MOUSE_UP不支持对象采用拼接...
来源: Laya_社区 发布时间: 20180116