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

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

201. 求教Event.KEY_DOWN和Event.MOUSE_DOWN调用window.open相关问题 [ 80%]

...E_DOWN调用window.open相关问题 点击的调用函数: private function OnDown(e:Event):void { Browser.window.open("http://baidu.com"); } Laya.stage.on(Event.KEY_DOWN, this, OnDown);//正常 Laya.stage.on(Event.MOUSE_DOWN, this, OnDown);//被拦截 Laya.stage.on(Event.CLICK, this, OnD...

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

202. laya.d3.component.animator.AnimatorController_API3.0 [ 80%]

...ch Preparing search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/d3/component/Animator/AnimatorController" AnimatorController Class AnimatorController Hierarchy Resource AnimatorController Index Constr...

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

203. l龙骨动画内存上升 [ 80%]

...求解决方法 留言给我;要下班了;谢谢 大家 public function LayaSample() {             //初始化引擎             Laya.init(1136, 640, WebGL);             Laya.stage.bgColor = "#ffffff";             Laya.stage.on(Event.CLICK, this, play);    ...

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

204. laya.resource.Prefab_API3.0 [ 80%]

...ch Preparing search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/resource/HierarchyResource" Prefab Class Prefab Hierarchy Resource Prefab PrefabImpl Index Constructors constructor Properties _id destr...

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

205. viewstack 如何获取子页面对象,以及操作子页面中的按钮控件? [ 80%]

...者思路也好。 2018-05-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 变量名.on(event.mousedown)  形如这样子的代码。 2018-05-23 0 5 分享 微博 QZONE 微信 为什么...

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

206. laya.d3.animation.AnimationClip_API3.0 [ 80%]

...ch Preparing search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/d3/animation/AnimationClip" AnimationClip Class AnimationClip AnimationClip 类用于动画片段资源。 Hierarchy Resource AnimationC...

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

207. spine动画放大后,遮罩显示不正常 [ 80%]

...的TestScene.scene文件 export default class GameUI extends Laya.Scene { constructor() { super(); //设置单例的引用方式,方便其他类引用 GameUI.instance = this; //关闭多点触控,否则就无敌了 Laya.MouseManager.multiTouchEnabled = false; //加载场景文件 this.loadScene(...

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

208. Laya中textinput的监听事件的执行顺序是FOCUS=>MOUSE_DOWN=>CLICK,有没有比FOCUS还要先触发的监听 [ 79%]

...>CLICK,有没有比FOCUS还要先触发的监听 this.textinput_message.on(Laya.Event.CLICK,this,()=>{ console.log("CLICK>>>"); }) this.textinput_message.on(Laya.Event.MOUSE_DOWN,this,()=>{ console.log("MOUSE_DOWN>>>"); }) this.textinput_message.on(Laya.Event.FOCUS, this, ...

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

209. [LayaAir3]GList点击出现连续点击问题 [ 79%]

...件 : --> lizi.rar 2025-10-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 谷主 赞同来自: 虚拟列表,item是重用的,itemRenderer在滚动时是不断会被调用刷新不同的item的,所以不...

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

210. 分享:SWF LABEL标签的使用! [ 79%]

...s.Event; public class SwfLabelUse { private var mc:MovieClip; public function SwfLabelUse() { Laya.init(600,600); Laya.stage.bgColor="#EEFFCC"; mc=new MovieClip(); mc.load("output/AAA.swf"); mc.on(Event.LOADED,this,onLoaded); Laya.stage.addChild(mc); } private function onLoaded():void { mc.addLabel(...

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