大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0075 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, onDeviceorientation); function onDeviceorientation(absolute, rotationInfo) { this.info.text = "alpha:" + Math.floor(rotationInfo.alpha) + '\n' + "beta :" + Math.floor(rotationInfo.beta) + '\n' + "gamma:" + Math.floor(rotationInfo.gamma); } ``` ## ...
来源: Laya2.0_文档 发布时间: 20210714
...性名称 * @return */ public function getMapProperties(name:String):* { if (_properties) { return _properties[name]; } return null; } ...
来源: Laya_社区 发布时间: 20180502
...: 以下三种方式都无返回 window.addEventListener('devicemotion', function(event){}) window.addEventListener('deviceorientation', function(event) {}) Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation); 连接打开方式都由微信扫一扫打开,safari不...
来源: Laya_社区 发布时间: 20191202
...事件:为什么没有设置穿透,也会发生穿透现象? public function createMovieClip():void { bg = CreateObj.createSprite(McUrlMgr.LOAD_BG_Path); this.addChild(bg); bg.x = 0; bg.y = 0; ...
来源: Laya_社区 发布时间: 20161223
.../Scene/Conventional/Model.lh", Laya.Handler.create(this, function () { GameManager.models = Laya.loader.getRes("res/Scene/Conventional/Model.lh"); this.refreshProgressBar(1); this.destroy(); }...
来源: Laya_社区 发布时间: 20240218
...的层级文件在附件中,laya加载代码如下: var LayaAir3D = (function () { function LayaAir3D() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show();...
来源: Laya_社区 发布时间: 20180116
...t laya.events.Event; import laya.utils.Browser; public class Main { public function Main() { Laya.init(500,500); Laya.stage.once(Event.CLICK,this,this.clickHandler); } private function clickHandler():void { var iframe:Object = Browser.document.createElement("iframe"); iframe.style.position ="absolut...
来源: Laya_社区 发布时间: 20180223
...方式: Laya.loader.load("prefab/hero.json", Laya.Handler.create(this, function (obj) { console.log('hero',obj); }), null, Laya.Loader.PREFAB); Laya.loader.create("prefab/WeiTiao.json", Laya.Handler.create(this, function (obj) { ...
来源: Laya_社区 发布时间: 20211026
关于Timer延迟调用有一些不解 private function skill():void { Laya.timer.once(1500,this,finish); //Laya.timer.once(3000,this,finish); } private function skill():void { this.visible=false; } 假定这是一个简陋的人物隐身技能,蓄力1.5s后人物消失。 ...
来源: Laya_社区 发布时间: 20161216
...ya.utils.Handler; import view.TestView; public class LayaUISample { public function LayaUISample() { //初始化引擎 Laya.init(600, 400); //Laya.loader.load([{url: "res/atlas/char_wudang01.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); this.onLoaded(); } private function onLoaded():...
来源: Laya_社区 发布时间: 20170220