大约有 290 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0068 秒)
...景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoad回调方法 Laya.loader.load([skin1,skin2], Handler.create(this, onLoaded)); } private function onLoaded():void { //创建一个CheckBox实例cb1 var cb1:CheckBox = new CheckBox(skin1); //添加到舞台上显示 Laya.stag...
来源: Laya2.0_文档 发布时间: 20210714
...you may not be using this functionality currently, it has the potential to load private frameworks, private methods, and enable future feature changes. This includes any code which passes arbitrary parameters to dynamic methods such as dlopen(), dlsym(), respondsToSelector:, performSelector:, method...
来源: Laya_社区 发布时间: 20171221
... var planeMat = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function (tex) { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 var tilingOffset = planeMat.til...
来源: Laya_社区 发布时间: 20210103
...动画所需的图集。 ```javascript //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/ui.atlas", Laya.Handler.create(this, onLoaded)); ``` 第二步:创建Animation实例,加载动画文件 ```javascript //创建一个Animation实例 var tl = new Laya.Animation(...
来源: Laya2.0_文档 发布时间: 20210715
...动画所需的图集。 ```typescript //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/ui.atlas",Laya.Handler.create(this,this.onLoaded)); ``` 第二步:创建Animation实例,加载动画文件 ```typescript //创建一个Animation实例 var tl:Laya.Animation = n...
来源: Laya2.0_文档 发布时间: 20210715
...加载动画所需的图集。 ```java //加载图集成功后,执行onLoad回调方法 Laya.loader.load("res/atlas/ui.atlas", Handler.create(this, onLoaded)); ``` 第二步:创建Animation实例,加载动画文件 ```java //创建一个Animation实例 var tl:Animation = new Animation(); //加...
来源: Laya2.0_文档 发布时间: 20210715
...-byte allocation 05-16 15:59:48.767 7562-7562/com.dihong.testdcc D/libEGL: loaded /system/lib/egl/libEGL_tegra.so 05-16 15:59:48.771 7562-7562/com.dihong.testdcc D/libEGL: loaded /system/lib/egl/libGLESv1_CM_tegra.so 05-16 15:59:48.773 7562-7562/com.dihong.testdcc D/libEGL: loaded /system/lib/egl/li...
来源: Laya_社区 发布时间: 20190516
...idth=828,height=1792 2019-06-18 13:34:08.500957+0800 test1[6479:65523] download thread num = 3 2019-06-18 13:34:09.231013+0800 test1[6479:65523] createOpenALSource current num=10 2019-06-18 13:34:09.231349+0800 test1[6479:65523] Start js scripts/apploader.js 2019-06-18 13:34:09.237285+0800 test1[647...
来源: Laya_社区 发布时间: 20190618
...tField") export class TestField extends IEditor.PropertyField { @IEditor.onLoad static async onLoad() { await gui.UIPackage.resourceMgr.load("MyField.widget"); } create() { let input = gui.UIPackage.createWidgetSync("MyField.widget"); return { ui: input }; } refresh() { //这里负责将数据设置...
来源: Laya3.0_文档 发布时间: 20241014
...。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/tab.png"], Handler.create(this, onLoadComplete));//加载资源。 } private function onLoadComplete():void { var tab:Tab = new Tab();//创建一个 Tab 类的实例对象 tab 。 tab.skin = "resource/...
来源: Laya3.0_api 发布时间: 20231115