大约有 9 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)
...示。在LayaAir IDE里的按钮图片(皮肤)资源命名通常是以btn为前缀。Button 组件的属性接口介绍请参考 Button API。 1.1 创建Button组件 使用LayaAir IDE创建Button非常简单,通过IDE的可视化操作,完全不需要程序基础,即可实现组件的创...
来源: Laya3.0_文档 发布时间: 20241014
...xport class UI_VBox extends Laya.Script { private vbox: Laya.VBox; private btn1: Laya.Button; private btn2: Laya.Button; private btn3: Laya.Button; // 按钮皮肤资源 private skins: string = "atlas/comp/button.png"; //组件被激活后执行,此时所有节点和组件均已创建完毕,此...
来源: Laya3.0_文档 发布时间: 20241014
...xport class UI_HBox extends Laya.Script { private hbox: Laya.HBox; private btn1: Laya.Button; private btn2: Laya.Button; private btn3: Laya.Button; // 按钮皮肤资源 private skins: string = "atlas/comp/button.png"; //组件被激活后执行,此时所有节点和组件均已创建完毕,此...
来源: Laya3.0_文档 发布时间: 20241014
...OG_WIDTH: number = 220; private DIALOG_HEIGHT: number = 275; private CLOSE_BTN_WIDTH: number = 43; private CLOSE_BTN_PADDING: number = 5; private assets: any[]; private dialog: Laya.Dialog; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,...
来源: Laya3.0_文档 发布时间: 20230303
...1.3.2 设置关闭按钮 在弹窗页面中,有一个关闭按钮(closeBtn),需要添加脚本实现关闭页面的逻辑。如动图1-7所示,勾选closeBtn的定义变量选项,然后双击Prefab2D的“UI运行时”,创建UI组件脚本。 (动图1-7) 保存场景后,在Runti...
来源: Laya3.0_文档 发布时间: 20241014
...void { console.log("IndexRT onEnable") //侦听ui按钮点击事件 this.uiBtn.on(Laya.Event.CLICK, this, () => { //点击后,打开UI场景示例 console.log("uiBtn"); Laya.Scene.open("scenes/UiMain.ls"); }); //侦听物理按钮点击事件 this.phyBtn.on(Laya.Event.CLICK, this, () => { //...
来源: Laya3.0_文档 发布时间: 20241014
...资源文件名前缀缩写 Image 图像 image_ img_ Button 按钮 button_ btn_ ComboBox 下拉框 comboBox_ combo_ TextInput 文本输入 textInput_ input_ TextArea 文本域 textArea_ area_ CheckBox 多选框 checkBox_ check_ Label 显示文本 label_ 无缩写 RadioGroup 单选框组 radioGroup_ ...
来源: Laya3.0_文档 发布时间: 20241014
...reate(this,this.onUIAssetsLoaded)); } private onUIAssetsLoaded():void{ var btn:Laya.Button = new Laya.Button("res/a.png"); Laya.stage.addChild(btn); //创建隐藏的file并且把它和按钮对齐。达到位置一致,这里我们默认在0点位置 var file:any = Laya.Browser.document.createElem...
来源: Laya3.0_文档 发布时间: 20241014
... async create(): Promise<void> { this._panel = new gui.Widget(); let btn = IEditor.GUIUtils.createButton(); btn.setPos(150, 180); this._panel.addChild(btn); } accept(asset: IEditor.IAssetInfo): boolean { return asset.ext === "abc"; //应用于扩展名是abc的资源 } async refresh(asset: IEd...
来源: Laya3.0_文档 发布时间: 20241014