大约有 9 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)
...oup不同的是,Radio是一个单选框,而RadioGroup可以通过修改labels属性来增加单选框。RadioGroup组件的详细用法可以参考RadioGroup API。 一、通过LayaAir IDE创建RadioGroup组件 1.1 创建RadioGroup 如图1-1所示,点击选择小部件面板里的RadioGroup组...
来源: Laya3.0_文档 发布时间: 20241014
...,也被称为子项模板(Item Template)。子项模板内可以放Label、Image等组件。 滚动条可以设置垂直滚动条或水平滚动条,还可以两者同时设置。 1.2 创建List 1.2.1 添加List组件 如图1-1所示,可以在层级窗口中右键进行创建,也可以从...
来源: Laya3.0_文档 发布时间: 20241014
...ut_ TextArea 文本域 textArea_ area_ CheckBox 多选框 checkBox_ check_ Label 显示文本 label_ 无缩写 RadioGroup 单选框组 radioGroup_ 无缩写 Radio 单选框 radio_ 无缩写 Tab 导航标签组 tab_ 无缩写 Clip 位图切片 clip_ 无缩写 FontClip 位图字体切片 fontClip_ 无...
来源: Laya3.0_文档 发布时间: 20241014
...regClass() export class Main extends Laya.Script { @property( { type: Laya.Label } ) private label: Laya.Label; @property( { type: Laya.Sprite3D } ) private target: Laya.Sprite3D; private animator : Laya.Animator; onStart() { this.label.on( Laya.Event.CLICK, this, this.test ); //获得状态机 this...
来源: Laya3.0_文档 发布时间: 20241014
...ng", Laya.Loader.IMAGE).then((res)=> { /* res是HTMLImage */ }); [!Type|label:Tips] 不能使用Loader.getRes获得fetch结果,因为fetch方法不缓存 1.6 使用Options。 Laya.loader.load(url, { group:xx, piority:1 }); //priority不限制0-5。为任意整数,数字越大优先级越高...
来源: Laya3.0_文档 发布时间: 20230406
...ya.ColliderBase, contact?: any): void { // 假如碰到了炸弹 if (other.label == "bomb") { // 此处省略爆炸伤害的逻辑 console.log("碰到炸弹:" + self.label + "受到伤害,生命值减少xx"); } else if (other.label == "Medicine") { // 假如碰到了药箱 // 此处省略恢复...
来源: Laya3.0_文档 发布时间: 20241014
... ) //拿到 Image 组件 private image: Laya.Image; @property( { type:Laya.Label } ) //拿到 Label 组件 private label: Laya.Label; @property( { type:Laya.Button } ) //拿到 Button 组件 private button: Laya.Button; @property( { type:Laya.Sprite } ) //拿到 Sprite 组件 private sprite: Laya.Sp...
来源: Laya3.0_文档 发布时间: 20241014
...并用代码控制弹出。方法为: let menu = IEditor.Menu.create([ { label: "test" , click : function() { console.log("clicked"); } } ]); //当需要弹出时 menu.show(); 菜单也支持级联,并且不限层数。例如: IEditor.Menu.create([ { label: "test" , submenu: [ { label : "a" },...
来源: Laya3.0_文档 发布时间: 20241014
...点里只能看到Animator,如果是2D节点只能选Animator2D。 [!Tip|label:Tips] Animator2D是2D动画组件,Animator是3D动画组件。 操作顺序如动图1-6所示: (图1-6) 然后,在属性面板中可看到Animator组件。点击Animator组件中的Controller,选择已有的...
来源: Laya3.0_文档 发布时间: 20230519