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

大约有 1,590 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)

151. 获取动态更新的文本内容 [ 81%]

...yeimf.txt",type:Laya.Loader.TEXT} ] Laya.loader.load(resArray,Laya.Handler.create(this,this.Onloaded),null,Laya.Loader.TEXT,0,true,null,true);*/ let event1=Laya.loader.load("eyeimf.txt", Laya.Handler.create(this, this.Onloaded), null, Laya.Loader.TEXT,0,true,null,true); //console.log(Laya.Loader.loa...

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

152. 用Geolocation获取地理位置信息(TypeScript-LayaAir基础篇(TS)-硬件设备相关) [ 81%]

...``java // 尝试获取当前位置 Geolocation.getCurrentPosition( Handler.create(this, onSuccess), Handler.create(this, onError) ); // 成功获取位置后触发 function onSuccess(info:GeolocationInfo):void { trace('经纬度: (' + info.longitude + '°, ' + info.latitude + '°),精确度:' + ...

来源: Laya2.0_文档 发布时间: 20210715

153. 用Geolocation获取地理位置信息(JavaScript-LayaAir基础篇(JS)-硬件设备相关) [ 81%]

...``java // 尝试获取当前位置 Geolocation.getCurrentPosition( Handler.create(this, onSuccess), Handler.create(this, onError) ); // 成功获取位置后触发 function onSuccess(info:GeolocationInfo):void { trace('经纬度: (' + info.longitude + '°, ' + info.latitude + '°),精确度:' + ...

来源: Laya2.0_文档 发布时间: 20210715

154. 3D场景脚本继承问题 (LayaAir 2.0.0) [ 81%]

...CompleteMainScene_test.ls", clas:BattleScene} ];  //预加载 Laya.loader.create ( this.resArray, Laya.Handler.create(this,this.onPreLoadComplete), Laya.Handler.create(this,this.onProgress), );   }  onPreLoadComplete() : void { let sceneUrl = this.resArray[0]["url"];  this.scene = Laya.loader.ge...

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

155. 批量销毁释放内存(JavaScript-3D基础(JS)-LayaAir3D的内存管理) [ 81%]

...ne3D.load("res/threeDimen/scene/ParticleScene/Example_01.ls", Laya.Handler.create(this, function(scene){ this._scene = Laya.stage.addChildAt(scene, 0); var camera = scene.addChild(new Laya.Camera(0, 0.1, 100)); camera.transform.translate(new Laya.Vector3(0, 1, 0)); camera.addComponent(CameraMoveScri...

来源: Laya2.0_文档 发布时间: 20210715

156. laya.d3.graphics.VertexBuffer3D [ 81%]

...er  canRead : Boolean[read-only] 获取是否可读。 VertexBuffer3D  create : Function[static] 创建VertexBuffer3D。 VertexBuffer3D _enableAtributes : Array[static] Buffer  vertexCount : int[read-only] 获取顶点个数。 VertexBuffer3D  vertexDeclaration : VertexDeclaration[read-only...

来源: laya_api 发布时间: 20170929

157. 图集动画没有显示 [ 81%]

...fPath = 'res/atlas/cloud.json'; Laya.loader.load(AniConfPath, Laya.Handler.create(this, this.createAnimation), null, Laya.loader.ATLAS); function createAnimation() { var ani = new Laya.Animation(); ani.loadAtlas(AniConfPath); ani.interval = 30; ani.index = 1; ani.play(); Laya.stage.addChild(ani); } ...

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

158. 2.x引擎项目升级指南 · LayaAir3.0文档 · LAYABOX [ 81%]

...1.6 使用Options。1.7 预制体/场景的问题1.8 旧版本引擎load和create的兼容性问题1.9扩展Loader能力2、关于动态加载IDE里的资源说明3、LayaAir3.0 输入处理模块修改3.1 2D和3D统一接口,3.2 2D能对3D正确遮挡。3.3 新增 MOUSE_DRAG和MOUSE_DRAG_END3.4 ...

来源: Laya3.0_文档 发布时间: 20230406

159. 用Geolocation获取地理位置信息(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 81%]

...``java // 尝试获取当前位置 Geolocation.getCurrentPosition( Handler.create(this, onSuccess), Handler.create(this, onError) ); // 成功获取位置后触发 function onSuccess(info:GeolocationInfo):void { trace('经纬度: (' + info.longitude + '°, ' + info.latitude + '°),精确度:' + ...

来源: Laya2.0_文档 发布时间: 20210714

160. 3D模型旋转定位问题 [ 81%]

...D对象 附件上传了我的工程文件。   如果是使用Laya.loader.create("model/build/warehouse1/warehouse1.lh", Laya.Handler.create(this, onComplete)); function onComplete() { //仓库原型 warehouse1 = Laya.Sprite3D.load("model/build/warehouse1/warehouse1.lh"); scene.addChild(warehouse1)...

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