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

大约有 558 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0080 秒)

381. laya.ui.TextArea [ 56%]

...mouseEnabled : Boolean 是否接受鼠标事件。 默认为false,如果监听鼠标事件,则会自动设置本对象及父节点属性 mouseEnable 值都为 true(如果父节点手动设置为false,则不会更改)。 Sprite mouseThrough : Boolean = false 鼠标事件与此对象...

来源: Laya2.0_api 发布时间: 20190513

382. HttpRequest详解(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 56%]

...`upload` | `XMLHttpRequestUpload` | 可以在 `upload 上添加一个事件监听来跟踪上传过程。` | | `withCredentials` | `boolean` | 表明在进行跨站(cross-site)访问控制(Access-Control)请求时,是否使用认证信息(例如cookie或授权header)。 默认为 `false。` ...

来源: Laya2.0_文档 发布时间: 20210715

383. laya.gltf.glTFResource_API3.0 [ 56%]

... in laya/events/EventDispatcher.ts:146 移除caller为target所有事件监听 Parameters caller: any caller对象 Returns EventDispatcher on on(type: string, listener: Function): EventDispatcher on(type: string, caller: any, listener: Function, args?: any[]): EventDispatcher Inherited from Event...

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

384. laya.device.media.HtmlVideo_API3.0 [ 56%]

... in laya/events/EventDispatcher.ts:146 移除caller为target所有事件监听 Parameters caller: any caller对象 Returns EventDispatcher on on(type: string, listener: Function): EventDispatcher on(type: string, caller: any, listener: Function, args?: any[]): EventDispatcher Inherited from Event...

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

385. laya.spine.SpineTemplet_API3.0 [ 56%]

... in laya/events/EventDispatcher.ts:146 移除caller为target所有事件监听 Parameters caller: any caller对象 Returns EventDispatcher on on(type: string, listener: Function): EventDispatcher on(type: string, caller: any, listener: Function, args?: any[]): EventDispatcher Inherited from Event...

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

386. laya.display.Stage [ 56%]

...mouseEnabled : Boolean 是否接受鼠标事件。 默认为false,如果监听鼠标事件,则会自动设置本对象及父节点属性 mouseEnable 值都为 true(如果父节点手动设置为false,则不会更改)。 Sprite mouseThrough : Boolean = false 鼠标事件与此对象...

来源: laya_api 发布时间: 20170929

387. image控件,手机浏览器环境,skin设置url网址链接获取不到图片,电脑浏览器种可以 [ 55%]

...鼠标是否处于按下状态”? TextInput重写onFocus和onBlur事件监听不到 图集打包找不到图集文件 Animator 如何获取当前所有动画名称呢?或者所有AnimationClip呢? iphoneX环境下新手引导抠图透明区域为黑色,其它机型都是正常。 i...

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

388. 使用3D精灵 · LayaAir3.3 · 引擎文档 · LAYABOX [ 55%]

...a.transform.localRotation = this.camera.transform.localRotation; } } /** * 监听鼠标事件 */ onAwake(): void { Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); this.camera = (<Laya.Camera>this.owner); } /** * 监听键盘...

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

389. laya.display.Input [ 55%]

...mouseEnabled : Boolean 是否接受鼠标事件。 默认为false,如果监听鼠标事件,则会自动设置本对象及父节点属性 mouseEnable 值都为 true(如果父节点手动设置为false,则不会更改)。 Sprite mouseThrough : Boolean = false 鼠标事件与此对象...

来源: laya_api 发布时间: 20170929

390. 【简单跑酷--JS版】---Lv.3 添加地板 [ 55%]

...aya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop = function(){ //监听有没有地板要移除 while(this.dieFloorList.lenght > 0){ var floor = this.dieFloorList.shift(); floor.removeSelf(); } } /** * 增加地板 */ _proto.addFloor = function(){ var floor = new Floor(); floor.init(); ...

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