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

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

171. 点击事件部分没响应! [ 58%]

...听(A页面派发 B页面侦听) TextInput重写onFocus和onBlur事件监听不到 ui list 里面的元素不能点击两次 关于适配采用showAll后留白部分的颜色问题 求指点3d射线碰撞和UI点击穿透的问题 关于遍历产生的sprite的点击事件,急,大神帮看...

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

172. laya.display.Sprite [ 58%]

...te 默认不接受鼠标事件,即mouseEnabled=false,但是只要对其监听任意鼠标事件,会自动打开自己以及所有父对象的mouseEnabled=true。所以一般也无需手动设置mouseEnabled。 LayaAir引擎API设计精简巧妙。核心显示类只有一个Sprite。Sprite针...

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

173. laya.net.HttpRequest [ 58%]

...offAllCaller(caller:*):EventDispatcher 移除caller为target的所有事件监听 EventDispatcher on(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher 使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。 Even...

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

174. 模型的功能介绍(ActionScript-3D基础(AS3)-LayaAir3D之模型和网格) [ 58%]

...象的,因此需要资源预加载,或异步加载时进行完成事件监听。在这个demo中事先使用了 `Laya.loader.create`来预加载资源。 在游戏中,我们经常打造角色换装系统,有时是换模型,有时是换贴图,有时候两者都换。因为材质贴图部...

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

175. laya.ui.CheckBox [ 58%]

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

来源: laya_api 发布时间: 20170929

176. laya.d3.core.MeshRenderer [ 58%]

...offAllCaller(caller:*):EventDispatcher 移除caller为target的所有事件监听 EventDispatcher on(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher 使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。 Even...

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

177. laya.events.EventDispatcher_API3.0 [ 58%]

... 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 Defined in laya/even...

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

178. laya.display.Text [ 57%]

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

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

179. laya.d3.terrain.TerrainChunk [ 57%]

...offAllCaller(caller:*):EventDispatcher 移除caller为target的所有事件监听 EventDispatcher on(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher[override] 增加事件侦听器,以使侦听器能够接收事件通知。 如果侦听鼠标事件,则会自动设...

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

180. 如何对3D精灵进行鼠标检测(JavaScript-3D基础(JS)-LayaAir3D之鼠标交互) [ 57%]

...。 ![](img/1.png)(图1) ```typescript { //在舞台上添加鼠标事件监听 Laya.stage.on(Laya.Event.MOUSE_DOWN,this, this.onMouseDown); } //点击触发事件 onMouseDown() { //记录点击到舞台上的点 this.point.x = Laya.MouseManager.instance.mouseX; this.point.y = Laya.MouseManager.inst...

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