大约有 3,176 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0070 秒)
Laya_社区(2392) Laya3.0_api(242) Laya2.0_文档(138) Laya2.0_api(136) laya_api(135) Laya3.0_文档(63) Laya_示例(52) Laya2.0_示例(18)
...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
....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
...`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
...子协议名称字符串构成的数组 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
...)); 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
...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
...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
...)); 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
...像机角度 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
... 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