大约有 1,070 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)
Laya_社区(958) Laya2.0_文档(30) Laya3.0_api(19) Laya3.0_文档(17) laya_api(13) Laya_示例(13) Laya2.0_api(13) Laya2.0_示例(7)
...示问题 左右亮暗按钮一个是自定义的btn,一个是自带的Button,使用的skin是同一个,但是显示不出,不知是哪里的设置有问题 附件 : --> 2018-05-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20180516
...: 直接输出节点可以获得当前节点的类型,或者使用button is Button或typeof button判断button是否是个按钮,返回true或false。 2016-12-14 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 star 相关问题 ...
来源: Laya_社区 发布时间: 20161214
...up() { var gap = 10; //创建一个Sprite充当音效播放按钮 var soundButton = createButton("播放音效"); soundButton.x = (Laya.stage.width - soundButton.width * 2 + gap) / 2; soundButton.y = (Laya.stage.height - soundButton.height) / 2; Laya.stage.addChild(soundButton); //创建一个Sprite...
来源: Laya_社区 发布时间: 20170527
list滑动问题 我在list上添加了button,每次触发button事件时候都会连带着list滑动,如何能点击button的时候屏蔽掉下面的list滑动。。 或者说当我滑动的时候不会触发里面的button事件。。 2017-10-13 添加评论 免费帖 --> 分享 微博 QZO...
来源: Laya_社区 发布时间: 20171013
...建一个UI页面(本例为`EffectAnimation.ui`),然后拖拽一个Button组件到场景编辑器中,如图7所示(*注意:本例中的Button组件在ui目录下*)。 ![7](img/7.png)(图7) **步骤二**:将制作的缩放动效模板(scale.efc)拖拽到Button组件下,如图8...
来源: Laya2.0_文档 发布时间: 20210715
...uctor() { super(); var btn1=new ui.test.view_btnUI(); var btn1_btn:laya.ui.Button=btn1.getChildByName("btn") as laya.ui.Button; //问题一: 这里为什么获取不到子node呢?打印显示btn1_btn为null console.log(btn1_btn); // btn1_btn.label="first"; this.myvbox.addChild(btn1); var btn2=ne...
来源: Laya_社区 发布时间: 20170725
...,比较大,然后给了一个鼠标点击事件。 在Image上给了个Button。 现在的问题是,当我点击这个Button的时候,下面的Image也会相应鼠标点击事件。 请问我该如何操作,才能使在点击Button的时候,这个Image不相应鼠标点击呢? ...
来源: Laya_社区 发布时间: 20180903
...建一个UI页面(本例为`EffectAnimation.ui`),然后拖拽一个Button组件到场景编辑器中,如图7所示(*注意:本例中的Button组件在ui目录下*)。 ![7](img/7.png)(图7) **步骤二**:将制作的缩放动效模板(scale.efc)拖拽到Button组件下,如图8...
来源: Laya2.0_文档 发布时间: 20210715
...Laya.Image = new Laya.Image(this.assets[0]); this.dialog.addChild(bg); var button: Laya.Button = new Laya.Button(this.assets[1]); button.name = Laya.Dialog.CLOSE; button.pos(this.DIALOG_WIDTH - this.CLOSE_BTN_WIDTH - this.CLOSE_BTN_PADDING, this.CLOSE_BTN_PADDING); this.dialog.addChild(button); this...
来源: Laya3.0_文档 发布时间: 20230303
...建一个Sprite充当音效播放按钮 var soundButton: Sprite = this.createButton("播放音效"); soundButton.x = (Laya.stage.width - soundButton.width * 2 + gap) / 2; soundButton.y = (Laya.stage.height - so...
来源: Laya_社区 发布时间: 20201203