大约有 3,770 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0078 秒)
Laya_社区(3236) Laya2.0_文档(198) Laya3.0_api(102) Laya3.0_文档(83) Laya2.0_api(82) Laya_示例(44) laya_api(25)
...javascript if (Laya.Browser.onAndroid) Laya.URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompression/Android/"; else if (Laya.Browser.onIOS) Laya.URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompression/IOS/"; else Laya.URL.basePath = "res/threeDimen/scene/LayaScene_TextureGP...
来源: Laya2.0_文档 发布时间: 20210715
...L; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene: Laya.Scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; this._outHitAllInfo = new Array<Laya.RaycastHit>(); //初始化照相机 this.camera = scene.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Ca...
来源: Laya_社区 发布时间: 20180820
...预览,右边laya运行 代码就一个加载ls文件 Laya.Scene3D.load("res/LayaScene_Level1/Conventional/Level1.ls",Laya.Handler.create(null,function(scene){ //加载完成获取到了Scene3d Laya.stage.addChild(scene); ...
来源: Laya_社区 发布时间: 20210428
...纹理 ```typescript if (Browser.onAndroid) URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompression/Android/"; else if (Laya.Browser.onIOS) URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompression/IOS/"; else URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompressi...
来源: Laya2.0_文档 发布时间: 20210714
...eginRenderTarget(index:int):voidParallelSplitShadowMap calcSplitFrustum(sceneCamera:BaseCamera):voidParallelSplitShadowMap disposeAllRenderTarget():voidParallelSplitShadowMap endRenderTarget(index:int):voidParallelSplitShadowMap getCurrentPSSM():intParallelSplitShadowMap getFarDistanc...
来源: laya_api 发布时间: 20170929
...age.addChildAt(sprite1,0); ////桌子 ///场景 scene = new Scene(); Laya.stage.addChild(scene); ////摄像机 var camera:Camera = new Camera(); scene.addChild(camera)...
来源: Laya_社区 发布时间: 20170314
...: Laya.URL.basePath = "http://192.168.0.57:8901/bin/"; 之后调用Laya.Scene.load("/res/scene/Game.ls"); 这样写有没有问题? 如果没有问题,我想问为什么不能加载出来。如果我这样写则能加载出来 Laya.Scene.load("http://192.168.0.57:8901/bin/" + "/res/scene/Game....
来源: Laya_社区 发布时间: 20180410
...rState renderElement : RenderElement当前渲染物体。RenderState scene : Scene当前场景。RenderStatePublic Methods MethodDefined By RenderState() 创建一个 RenderState 实例。 RenderStateProperty Detailcamerapropertypublic var camera:BaseCamera当前摄像机。clientHeightpr...
来源: laya_api 发布时间: 20170929
...件的触发这里是随便取的名。 ```typescript export default class SceneScript extends Laya.Script3D { constructor(){ super(); //用于表现的方法 this.showMsgFunc = null; } //对应unity添加的AnimationEvent的动画事件函数,名字是可以对应上的 ShowMsg() { console.log("S...
来源: Laya2.0_文档 发布时间: 20210715
... //开启统计信息 Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); camera.transform.translate(new Laya.Vector3(0, 1.5, 4)); camera.transform.rotate(ne...
来源: Laya_社区 发布时间: 20180725