大约有 369 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0055 秒)
Laya_社区(114) Laya2.0_文档(64) Laya3.0_api(61) Laya2.0_api(57) laya_api(53) Laya3.0_文档(19) Laya2.0_示例(1)
...个UI A.UI 750X1344 B.UI 750X200 想让B在A底部显示 Laya.stage.addChild(AView) Laya.stage.addChild(BView) 如何控制代码,来保证B一直显示在底部 谢谢 2017-12-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...
来源: Laya_社区 发布时间: 20171214
...ke(): void { let sprite = new Laya.Sprite(); // 添加到舞台 Laya.stage.addChild(sprite); } 3.2 显示图片 图片的显示是游戏开发的基础,Sprite类中用于显示图片是 Sprite.loadImage 和 Sprite.texture。 3.2.1 loadImage /** * <p>加载并显示一个图片。相当于加...
来源: Laya3.0_文档 发布时间: 20241014
...geHandler = new Handler(this, this.onChange); //加载到舞台 Laya.stage.addChild(this.hScrollBar); //创建提示信息 this.createPromptText(this.hScrollBar) } /***创建提示信息***/ private createPromptText(scrollBar:ScrollBar):void { //实例化提示信息 this.promptText=new Text(); //...
来源: Laya2.0_文档 发布时间: 20210715
...geHandler = new Handler(this, this.onChange); //加载到舞台 Laya.stage.addChild(this.vScrollBar); //创建提示信息 this.createPromptText(this.vScrollBar) } /***创建提示信息***/ private createPromptText(scrollBar:ScrollBar):void { //实例化提示信息 this.promptText=new Text(); //...
来源: Laya2.0_文档 发布时间: 20210715
...悲剧 this.bg = new BackGround(); // 把背景添加到舞台 Laya.stage.addChild(this.bg); // 加载图集资源 Laya.loader.load("res/atlas/war.json",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS); })(); function onLoaded(){ // 创建一个主角 this.hero = new Role(); // 初始化...
来源: Laya_社区 发布时间: 20170525
....changeHandler = new Handler(this, onChange); //加载到舞台 Laya.stage.addChild(vScrollBar); //创建提示信息 createPromptText(vScrollBar) } /***创建提示信息***/ private function createPromptText(scrollBar:ScrollBar):void { //实例化提示信息 promptText=new Text(); //提示框字...
来源: Laya2.0_文档 发布时间: 20210715
....changeHandler = new Handler(this, onChange); //加载到舞台 Laya.stage.addChild(hScrollBar); //创建提示信息 createPromptText(hScrollBar) } /***创建提示信息***/ private function createPromptText(scrollBar:ScrollBar):void { //实例化提示信息 promptText=new Text(); //提示框字...
来源: Laya2.0_文档 发布时间: 20210714
请问video可以像其他组件一样使用addChild添加到panel中么 我的页面开发这样:stage->panel->panel中内容,stage宽高375*603,panel宽高375*603,pannel中内容宽高3000*603,也就是说panel中内容靠panel左右滑动才能观看,我想把一些视频放进...
来源: Laya_社区 发布时间: 20180516
...5/res/ui/button-1.png'; btn.labelSize = 22; btn.label = 'aaaa'; Laya.stage.addChild(btn); let btn = new Button(); btn.skin = 'https://layaair2.ldc2.layabox.com/demo2/h5/res/ui/button-1.png'; btn.labelSize = 22; btn.label = 'aaaa'; btn.anchorX = btn.anchorY = 0.5; Laya.stage.addChild(btn); 附件 : -...
来源: Laya_社区 发布时间: 20190907
...;//设置 textInput 的高度。 textInput.bgColor = "#c30c30"; Laya.stage.addChild(textInput);//将 textInput 添加到显示列表。 } private function Text_InputMultiline():void { var textInput:TextInput = new TextInput("多行输入");//创建一个 TextInput 类的实例对象 textInput 。 te...
来源: Laya2.0_文档 发布时间: 20210715