• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0075 秒)

2001. 陀螺仪与加速计(JavaScript-LayaAir基础篇(JS)-硬件设备相关) [ 68%]

...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

2002. 怎么获取Tiledmap设置的tiles自定义属性值 [ 68%]

...性名称          * @return          */         public function getMapProperties(name:String):* {             if (_properties) {                 return _properties[name];             }             return null;         }          ...

来源: Laya_社区 发布时间: 20180502

2003. IOS微信内置浏览器陀螺仪问题 Laya2.4.0bate [ 68%]

...: 以下三种方式都无返回 window.addEventListener('devicemotion', function(event){}) window.addEventListener('deviceorientation', function(event)  {}) Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation);  连接打开方式都由微信扫一扫打开,safari不...

来源: Laya_社区 发布时间: 20191202

2004. 鼠标事件:为什么没有设置穿透,也会发生穿透现象? [ 68%]

...事件:为什么没有设置穿透,也会发生穿透现象? public function createMovieClip():void {             bg = CreateObj.createSprite(McUrlMgr.LOAD_BG_Path);             this.addChild(bg);             bg.x = 0;             bg.y = 0;          ...

来源: Laya_社区 发布时间: 20161223

2005. [LayaAir2]Laya.loader.create 字节跳动苹果抖音扫码调用出现卡死现象 [ 68%]

.../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

2006. lh模型文件加载后黑屏,无法显示 [ 68%]

...的层级文件在附件中,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

2007. 怎么打开第二个工程 [ 68%]

...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

2008. 加载预制体json,返回值不统一 [ 68%]

...方式: 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

2009. 关于Timer延迟调用有一些不解 [ 68%]

关于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

2010. Animation的createFrames为何加载不了有的图集资源 [ 68%]

...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