大约有 321 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(120) Laya2.0_示例(67) Laya_示例(66) Laya2.0_文档(39) Laya3.0_api(21) Laya2.0_api(4) laya_api(3) Laya3.0_文档(1)
....version/libs/laya.d3.js:15299:21) 10-15 16:43:46.702: E/LayaBox(3503): at Handler.__proto.run (http://stand.alone.versio 10-15 16:43:46.743: W/EGL_emulation(3503): eglSurfaceAttrib not implemented 10-15 16:43:46.743: W/OpenGLRenderer(3503): Failed to set EGL_SWAP_BEHAVIOR on surface 0x9e2a9f80, err...
来源: Laya_社区 发布时间: 20181015
...回调方法绘制图片并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),150,50); //添加到舞台 L...
来源: Laya2.0_文档 发布时间: 20210715
...tage; import laya.display.Text; import laya.ui.ComboBox; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_ComboBox { /***下边列表美术资源**/ private var skin:String = "../../../../res/ui/combobox.png"; /***下拉列表**/ private var comboBox:ComboBox /***提示信息文...
来源: Laya2.0_文档 发布时间: 20210714
...一个 Button 实例。 package { import laya.ui.Button; import laya.utils.Handler; public class Button_Example { public function Button_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/button....
来源: Laya3.0_api 发布时间: 20231115
...UI(): void { Laya.loader.load(["../../res/threeDimen/ui/button.png"], Laya.Handler.create(this, function (): void { this.changeActionButton = Laya.stage.addChild(new Laya.Button("../../res/threeDimen/ui/button.png", "切换动作")) as Laya.Button; this.changeActionButton.size(160, 40); this.changeA...
来源: Laya_示例 发布时间: 20241117
...las() at Function/http://adobe.com/AS3/2006/builtin::call() at laya.utils::Handler/runWith() at laya.events::EventDispatcher/event() at laya.resource::Resource/completeCreate() at laya.webgl.resource::WebGLCharImage/recreateResource() at laya.resource::Resource/activeResource() at laya.resource::Tex...
来源: Laya_社区 发布时间: 20200217
... import laya.display.Text; import laya.resource.Texture; import laya.utils.Handler; import laya.display.BitmapFont; public class TestBitmapFont { //自定义文件名称 private var mFontName:String = "diyFont"; private var mBitmapFont:BitmapFont; public function TestBitmapFont() { Laya.init(550, 40...
来源: Laya2.0_文档 发布时间: 20201114
...xlocal/bg2.jpg",type:Laya.Loader.IMAGE} ]; Laya.loader.load(resArr, Laya.Handler.create(null, onLoaded)); function onLoaded(): void { Laya.URL.basePath ="https://xxx.com/"; //实例UI界面 var Main: MenuPageUI = new MenuPageUI(); Laya.stage.addChild(Main); } 在...
来源: Laya_社区 发布时间: 20191122
....Rectangle; import laya.ui.Dialog; import laya.ui.Image; import laya.utils.Handler; import ui.TestDialogUI; import ui.TestViewUI; public class TestView extends TestViewUI { private var PATH_LEN:Number = 120.0; private var speed:Number = 15; private var _path:Sprite = new Sprite(); private var _path2...
来源: Laya_社区 发布时间: 20171129
... xhr = new Laya.HttpRequest(); xhr.once(Laya.Event.COMPLETE, this, completeHandler); xhr.once(Laya.Event.ERROR, this, errorHandler); xhr.send("http://192.168.10.108:35553/re ... ot%3B, "", "get", "arraybuffer"); function completeHandler(data) { //加载完成返回的data是arraybuffer; //..........
来源: Laya_社区 发布时间: 20180201