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

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

381. laya.d3.core.render.PostProcessRenderContext_API3.0 [ 78%]

...rgetFormat depthFormat: RenderTargetFormat Default value mipmap: boolean = false Default value multiSamples: number = 1 Default value depthTexture: boolean = false Default value sRGB: boolean = false Returns RenderTexture Globals "laya/d3/core/render/PostProcessRenderContext" PostProcessRenderContex...

来源: Laya3.0_api 发布时间: 20231115

382. 官方Demo摇杆控制有bug [ 78%]

....stage.clientScaleY); this.currRockerbox.globalToLocal(this._currentMouse, false); 改为如下方式: // this._currentMouse.x = Math.round(e.touchPos.x / Laya.stage.clientScaleY); // this._currentMouse.y = Math.round(e.touchPos.y / Laya.stage.clientScaleY); // this.currRockerbox.globalToLocal(thi...

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

383. webview(TypeScript-LayaNative原生服务-LayaNative进阶) [ 78%]

...`canclose`参数用来控制这个webview是否能被关掉: * 设置为`false`时: 代码如下: ```typescript document.addEventListener('touchstart',()=>{ if(conch){ var l = 50; var t = 50; var w = window.innerWidth - l * 2; var h = window.innerHeight - t * 2; conch.setExternalLinkEx('http://w...

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

384. laya.net.Socket_API3.0 [ 78%]

...子协议名称字符串构成的数组 Default value isSecure: boolean = false 是否使用WebSocket安全协议wss,默认(false)使用普通协议ws Returns Socket Properties disableInput disableInput: boolean = false Defined in laya/net/Socket.ts:60 不再缓存服务端发来的数据,...

来源: Laya3.0_api 发布时间: 20231115

385. 加载不了模型 [ 77%]

...));         camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false);         camera.clearColor = Laya.Vector3(255,255,0.1);         camera.addComponent(CameraMoveScript);         //添加方向光         var directionLight = scene.addChild(new Laya.DirectionLight()); ...

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

386. IDE创建3D示例项目(ActionScript-3D基础(AS3)-快速开始一个LayaAir3D项目) [ 77%]

...w Vector3(0, 3, 3)); camera.transform.rotate(new Vector3(-30, 0, 0), true, false); //添加方向光 var directionLight:DirectionLight = scene.addChild(new DirectionLight()) as DirectionLight; directionLight.color = new Vector3(0.6, 0.6, 0.6); directionLight.transform.worldMatrix.setForward(new Vect...

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

387. 加载-错误处理和进度 [ 77%]

...Handler.create(this, onAssetLoaded), Handler.create(this, onLoading, null, false), Loader.TEXT); // 侦听加载失败 Laya.loader.on(Event.ERROR, this, onError); })(); function onAssetLoaded(texture) { // 使用texture console.log("加载结束"); } // 加载进度侦听器 function onLoading(progr...

来源: Laya_示例 发布时间: 20241118

388. 3D加载不了 [ 77%]

...));         camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false);         camera.clearColor = Laya.Vector3(255,255,0.1);         camera.addComponent(CameraMoveScript);         //添加方向光         var directionLight = scene.addChild(new Laya.DirectionLight()); ...

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

389. 官方LayaAir之灯光一节示例背景在微信里表现不一致 [ 77%]

...像机角度 camera.transform.rotate(new Laya.Vector3( -30, 0, 0), true, false); //创建方向光 var light:Laya.DirectionLight = scene.addChild(new Laya.DirectionLight()) as Laya.DirectionLight; //移动灯光位置 light.transform.translate(new Laya.Vector3(0,5,0)); //设置灯光方向 light.dir...

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

390. Laya2.2问题,有没有遇到的? [ 77%]

... GameConfig.startScene = ""; GameConfig.sceneRoot = ""; GameConfig.debug = false; GameConfig.stat = false; GameConfig.physicsDebug = false; GameConfig.exportSceneToJson = true; GameConfig.init();  class Main { constructor() { Laya.isWXOpenDataContext = true; Laya.isWXPosMsg = true; if (window["Laya...

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