大约有 155 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(73) Laya3.0_api(40) Laya_示例(12) Laya2.0_文档(10) Laya3.0_文档(9) Laya2.0_示例(9) laya_api(1) Laya2.0_api(1)
...造函数 Hierarchy Sprite UIComponent Box ISelect Button Clip ColorPicker Label Image Slider ScrollBar ComboBox ProgressBar TipManager OpenDataContextView Index Constructors constructor Properties _extra _ownGraphics _scene _skinBaseUrl _url autoSize hitTestPrior mouseThrough name tag drawtocanvCtx...
来源: Laya3.0_api 发布时间: 20231115
...tton","props":{"y":616,"x":296,"skin":"comp/button.png","name":"butStart","label":"label"},"compId":3}],"loadList":["comp/button.png"],"loadList3D":[]}; constructor(){ super()} createChildren():void { super.createChildren(); this.createView(GameSceneuiUI.uiView); } } REG("ui.GameSceneuiUI",GameScene...
来源: Laya_社区 发布时间: 20200228
...tton","props":{"y":616,"x":296,"skin":"comp/button.png","name":"butStart","label":"label"},"compId":3}],"loadList":["comp/button.png"],"loadList3D":[]}; constructor(){ super()} createChildren():void { super.createChildren(); ...
来源: Laya_社区 发布时间: 20200228
hitTestPrior点击穿透 label在box容器中, box和label都有点击事件, 点击label时, 如何只触发label的点击, 阻止穿透到box中 2017-09-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 cuixuey...
来源: Laya_社区 发布时间: 20170918
...number = 85; private img: Laya.Image; //private text: Laya.Label; constructor(){ super(); this.size(Item.WID, Item.HEI); this.img = new Laya.Image(); //this.text = new Laya.Label(); this.addChild(this.img); //this.addChild(this.text); }...
来源: Laya_社区 发布时间: 20180507
...组件(脚本) var _script:SceneScript = cube.addComponent(SceneScript); //label用于显示 var _lab:Label = new Label(); _lab.text = "test"; _lab.height = 100; _lab.width = 100; _lab.fontSize = 40; _lab.pos(200,200); Laya.stage.addChild(_lab); //给脚本的加强表现用方法赋值 _script.show...
来源: Laya2.0_文档 发布时间: 20210715
...); musicButton.on(Event.CLICK, this, onPlayMusic); } function createButton(label) { var w = 110; var h = 40; var button = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChi...
来源: Laya_社区 发布时间: 20170527
...的任意属性进行赋值。 example //默认属性赋值 dataSource = {label1: "改变了label", checkbox1: true};//(更改了label1的text属性值,更改checkbox1的selected属性)。 //任意属性赋值 dataSource = {label2: {text:"改变了label",size:14}, checkbox2: {selected:true,x:10}};...
来源: Laya3.0_api 发布时间: 20231115
...的任意属性进行赋值。 example //默认属性赋值 dataSource = {label1: "改变了label", checkbox1: true};//(更改了label1的text属性值,更改checkbox1的selected属性)。 //任意属性赋值 dataSource = {label2: {text:"改变了label",size:14}, checkbox2: {selected:true,x:10}};...
来源: Laya3.0_api 发布时间: 20231115
...关的链接 提交 2 个回复 cuixueying 赞同来自: zhang92tong Box,label,image都可以通过代码来创建 var box=new Laya.Box(); var image=new Laya.Image(); image.skin='res/001.png'; var label=new Laya.label(); label.text=' I am a Label!' box.addChild(image); box.addChild(label); L...
来源: Laya_社区 发布时间: 20170421