大约有 1,738 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0065 秒)
Laya_社区(1374) Laya2.0_文档(82) Laya3.0_api(68) Laya2.0_api(57) laya_api(53) Laya3.0_文档(45) Laya_示例(32) Laya2.0_示例(27)
...染方式,可以打开下面注释看一下效果 //list.renderHandler = new Handler(this, onListRender); } private onListRender(item: Laya.Box, index: number): void { //自定义list的渲染方式 var label: Label = item.getChildByName("label") as Label; if (index % 2) { label.color = "#ff0000";...
来源: Laya2.0_示例 发布时间: 20200319
透明区域点击问题 var sprite0 = new Sprite(); sprite0.graphics.drawTexture(Loader.getRes("comp/image.png")); sprite0.pos(10, 10); sprite0.mouseEnabled = true; sprite0.name = 'sprite0'; Laya.stage.addChild(sprite0); sprite0.on(Event.CLICK, this, handler_click); 怎么让sp透明区域不可...
来源: Laya_社区 发布时间: 20170428
... { scene3d:Laya.Scene3D; sp:Laya.Sprite3D; sp2:Laya.Sprite3D; translateA = new Laya.Vector3(-0.05, 0, 0); translateD = new Laya.Vector3( 0.05, 0, 0); constructor() { super(); //添加3D场景 var scene: Laya.Scene3D = Laya.stage.addChild(new Laya.Scene3D()) as Laya.Scene3D; this.scene3d = scene; //...
来源: Laya_社区 发布时间: 20190618
...es,Handler.create(this,graphicsImg)); })(); function graphicsImg() { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台 Laya.stage.addChild(img); } })(); ``` 运行效果如图2所示: ![图2](img/2.jpg)(图2) ...
来源: Laya2.0_文档 发布时间: 20210715
... function createVScroller() { //实例化垂直滚动条 this.vScrollBar = new VScrollBar(); //加载皮肤资源(其他资源根据规范命名后,会自动加载) this.vScrollBar.skin = "res/ui/vscroll.png"; //设置宽度 this.vScrollBar.width = 400; //设置位置 this.vScrollBar.pos(150, ...
来源: Laya2.0_文档 发布时间: 20210715
...function onLoadComplete(e:*=null):void { //实例化下拉列表 comboBox= new ComboBox(skin, "item0,item1,item2,item3,item4,item5"); //按钮标签字体大小 comboBox.labelSize = 30; //列表项标签字体大小 comboBox.itemSize = 25; //下拉列表选择触发处理回调 comboBox.selectHandle...
来源: Laya2.0_文档 发布时间: 20210714
...r = "#232628"; this.setup(); } private setup(): void { var dialog: Image = new Image("res/ui/dialog (3).png"); dialog.pos(165, 62.5); Laya.stage.addChild(dialog); } } } new laya.UI_Image(); ```
来源: Laya2.0_文档 发布时间: 20210714
....onLoaded)); } private onLoaded():void{ //创建一个UI实例 this.comp = new ui.ComponentDemoUI(); //添加到舞台上显示 Laya.stage.addChild(this.comp); //点击Tab选择按钮的处理 this.comp.tab.selectHandler = new Laya.Handler(this,this.onSelecte); } /**根据选择tab的索引切换页...
来源: Laya2.0_文档 发布时间: 20210715
...IDE是最新版本的 显示效果图: 附件在下面 附件 : --> NewStock.zip 2017-02-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 数据源修改后,渲染的时候需要...
来源: Laya_社区 发布时间: 20170207
...log页面: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { //鼠标点击后执行 onMouseClick(): void { //使用Prefab,需要转换根节点为Dialog Laya.loader.load("resources/Prefab2D.lh").then(res => { let dlg: Laya.Dialog = res.create(); dl...
来源: Laya3.0_文档 发布时间: 20241014