大约有 632 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)
Laya_社区(254) Laya2.0_示例(114) Laya2.0_文档(94) Laya_示例(92) Laya3.0_api(34) Laya2.0_api(21) Laya3.0_文档(15) laya_api(8)
...uch { public function DemoTouch() { Laya.init(800, 600, WebGL); Laya.stage.bgColor = "#232628"; var txt:Text = new Text(); txt.text = "hello"; txt.color = "#FF00FF"; txt.width = 100; txt.height = 100; txt.x = 200; txt.y = 100; txt.fontSize = 50; txt.on("click", this, onFunc); Laya.stage.addChild(txt...
来源: Laya_社区 发布时间: 20170519
... this.monkey2 = "res/img/monkey2.png"; //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //先加载图片资源,在图片资源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(this.monkey2,Laya.Handler.create(this,graphicsImg)); function graphicsImg(){ var...
来源: Laya_社区 发布时间: 20170825
... Laya.init(1136, 640); Laya.stage.bgColor = "#ffcccc"; var resArr:Array = [ {res:"res/atlas/ui.atlas"}, {res:"res/ui/back.png",type:Loader.IMAGE} ]...
来源: Laya_社区 发布时间: 20180106
...true; Laya3D.init(GameConfig.width, GameConfig.height, config); Laya.stage.bgColor = null; 在2.12.2和之前的版本这么写可以隐藏背景 然后实现背景加载高德或者百度地图 2.13.0和2.13.1beta就彻底没用了 彻底无法隐藏了 随便新建个工程就可以发现了...
来源: Laya_社区 发布时间: 20220824
...rivate begin: Begin; constructor() { Laya.init(600,400, WebGL); Laya.stage.bgColor = "#000000"; Laya.loader.load("comp/button.png", Handler.create(this, this.onLoaded)); } private onLoaded(): void { this.begin = new Begin(); Laya.stage.addChild(this.begin); } } new GameMain(); 2018-08-29 添加评...
来源: Laya_社区 发布时间: 20180829
...op(居顶对齐)、middle(居中对齐)、bottom(居底对齐) bgColor 背景颜色,勾选后可以直接输入颜色值,例如:#ffffff,也可以点击输入条右侧的拾色器选取颜色 bordercolor 文本边框颜色,勾选后可以直接输入颜色值,例如:#ffffff...
来源: Laya3.0_文档 发布时间: 20241014
...1136, 640, WebGL); Laya.stage.bgColor = "#ffffff"; //以500毫秒的时间间隔播放颜色切换的矩形 Laya.timer.loop(500, this, createRect); })(); function...
来源: Laya_社区 发布时间: 20170510
... Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.bgColor = "#ff0000"; Laya.stage.scaleMode = "fixedwidth"; Laya.loader.load("http://localhost/layabox/layabox/layabox/res/bg.png'", Handler.create(this, function () { var t = Laya.loader.getRes(skin); ...
来源: Laya_社区 发布时间: 20170222
...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.connect(); } connect() { const Socket = Laya.Socket, Event = Laya.Event; socket = new Socket(); //socket.connect("echo.websocket.org", 80); socket.connectByUrl("ws://echo.websocket.org:80"); output =...
来源: Laya2.0_示例 发布时间: 20241119
...交 1 个回复 cuixueying 赞同来自: Laya.init(800, 800); Laya.stage.bgColor = "#eeffcc"; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#EEFF00"); var label:Label=new Label(); label.fontSize=60; label...
来源: Laya_社区 发布时间: 20180403