大约有 1,007 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0059 秒)
为什么laya的Button渲染逻辑顺序是先渲染,再获取素材切片? /** *@private *改变对象的状态。 */ __proto.changeState=function(){ this._stateChanged=false; this.runCallLater(this.changeClips); var index=this._state < this._stateNum ? this._state :this._stateNum-1; this._...
来源: Laya_社区 发布时间: 20170516
...建一个UI页面(本例为`EffectAnimation.ui`),然后拖拽一个Button组件到场景编辑器中,如图7所示(*注意:本例中的Button组件在ui目录下*)。 ![7](img/7.png)(图7) **步骤二**:将制作的缩放动效模板(scale.efc)拖拽到Button组件下,如图8...
来源: Laya2.0_文档 发布时间: 20210715
...行里的数据进行修改 按删除 删除这一行 在list外面有个button 点击button 会添加一行 内容也是别的地方获取到的内容 2018-01-17 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 AllenYT 相关问题 发起...
来源: Laya_社区 发布时间: 20180117
...下:http://ldc.layabox.com/doc/?nav=zh-ts-2-2-3 你是否已经修改了button的类引用,以及是否注册了button组件! 2017-08-24 1 2 分享 微博 QZONE 微信 wander 赞同来自: 2017-08-24 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请...
来源: Laya_社区 发布时间: 20170824
...建一个Sprite充当音效播放按钮 var soundButton: Sprite = this.createButton("播放音效"); soundButton.x = (Laya.stage.width - soundButton.width * 2 + gap) / 2; soundButton.y = (Laya.stage.height - so...
来源: Laya_社区 发布时间: 20201203
...一个UI页面(本例为`EffectAnimation.scene`),然后拖拽一个Button组件到场景编辑器中,如图7所示,(*注意:本例中的button组件在comp目录下*)。 ![图7](img/7.png) (图7) **步骤二**:将制作的缩放动效模板(scale.efc)拖拽到Button组件...
来源: Laya2.0_文档 发布时间: 20210715
...拽可以通过多种方式实现,以下几个方法仅供参考 1、给button监听Event.DOWN事件,在Down的回调函数中监听Event.MOVE事件,在Move事件的回调中让button.x=laya.stage.mouseX,button.y=laya.stage.mouseY 2、直接在Event.DOWN回调函数下,设置button.startDr...
来源: Laya_社区 发布时间: 20160907
...载TFF字体要怎么加载呢? 请问layaide如何创建一个复合的Button Laya3D里的material可以设置flat shading么 请问下怎么引入第三方库 问题状态 最新活动: 2018-08-08 16:57 浏览: 1259 关注: 2 人 158*****197 • 2018-08-08 17:00 这样的话电脑和手机没法...
来源: Laya_社区 发布时间: 20180808
...t); Laya.stage.bgColor = "#ffffff"; Stat.show(); var DesBtn:Sprite = createButton("销毁动画"); DesBtn.x = 50; DesBtn.y = 50; Laya.stage.addChild(DesBtn); //创建一个Sprite充当音乐播放按钮 var addBtn:Sprite = createButton("添加动画"); addBtn.x = 250; addBtn.y = 50; Laya.stage.addCh...
来源: Laya_社区 发布时间: 20170406
... gap: number = 10; //创建一个Sprite充当音效播放按钮 var soundButton: Sprite = this.createButton("播放音效"); soundButton.x = (Laya.stage.width - soundButton.width * 2 + gap) / 2; soundButton.y = (Laya.stage.height - soundButton.height) / 2; Laya.stage.addChild(soundButton); //创...
来源: Laya_社区 发布时间: 20190421