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

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

761. laya.ui.Tree_API3.0 [ 37%]

...ils.Browser; import laya.utils.Handler; public class Tree_Example { public function Tree_Example() { Laya.init(640, 800); Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/vscroll.png", "resource/ui/vscroll$bar.png", "resource/ui/vscroll$down.png", "resou...

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

762. [BUG]刚体约束问题,移动后约束混乱! [ 37%]

...ure2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function (tex) {       planeMat.albedoTexture = tex;     }));     //设置纹理平铺和偏移     var tilingOffset = planeMat.tilingOffset;     tilingOffset.setValue(5, 5, 0, 0);     plan...

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

763. 关于在TS工程中引入微信JS-SDK的问题 [ 37%]

....config));   在PC上用chrome运行,wx的类型是object,wx.config是function,一切正常,但如果导出后用微信开发者工具打开,则出现如下图的问题:   //========================================   如果不下载到本地,用如下语句在线引用的话: <...

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

764. 3D粒子编辑模块 · LayaAir3.0文档 · LAYABOX [ 36%]

...ath = ""; } Pool.getInstance().ClearGroup("Particle3D@" + root_path, this, function(particle_3d:Particle3D) { particle_3d.Clean(); }); } } 5.2 自定义对象池类 export class Pool { private _poolDic:{[key: string]: any;} = {}; private InPoolSign: string = "__InPool"; constructor() { } private sta...

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

765. TiledMap加载报错 relativePath为空 [ 35%]

...ence1.json",new Rectangle(0,0,800, 800),Handler.create(this,onMapLoaded)); function onMapLoaded(){ console.log("地图加载完成"); }scence1.json { "height":25, "infinite":false, "layers":[ { "data":[7, 7, 7, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 7, 7, 7, 1, 1, 1, 1, 1,...

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

766. 多种碰撞器形状(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 34%]

...aya.Mesh.load("res/threeDimen/Physics/table.lm", Laya.Handler.create(this, function(mesh) { //....省略中间 //读取导出的桌子模型 var table = scene.addChild(new Laya.MeshSprite3D(mesh)); //给桌子加刚体并且设置刚体属性 var rigidBody = table.addComponent(Laya.Rigidbody3D); rig...

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

767. 缓存工具-layadcc · LayaAir3.0文档 · LAYABOX [ 34%]

... await dcc.updateAll((p)=>{/*进度提示*/}) 5.5 使用zip更新 async function downloadBigZip(url:string):Promise<string|null>{ let cachePath = conch.getCachePath(); let localfile = cachePath+url.substring(url.lastIndexOf('/')); return new Promise((resolve,reject)=>{ downloadBigFile(ur...

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

768. 多种碰撞器形状(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 32%]

...pescript Mesh.load("res/threeDimen/Physics/table.lm", Handler.create(this, function(mesh:Mesh):void { //....省略中间 //读取导出的桌子模型 var table:MeshSprite3D = scene.addChild(new MeshSprite3D(mesh)) as MeshSprite3D; //给桌子加刚体并且设置刚体属性 var rigidBody:Rigidbody...

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

769. 多种碰撞器形状(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 32%]

...aya.Mesh.load("res/threeDimen/Physics/table.lm", Laya.Handler.create(this, function(mesh:Laya.Mesh) { //....省略中间 //读取导出的桌子模型 var table = scene.addChild(new Laya.MeshSprite3D(mesh)) as Laya.MeshSprite3D; //给桌子加刚体并且设置刚体属性 var rigidBody = table.addC...

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

770. 3D物理编辑 · LayaAir3.0文档 · LAYABOX [ 18%]

...aya.Mesh.load("res/threeDimen/Physics/table.lm", Laya.Handler.create(this, function(mesh:Laya.Mesh) { //读取桌子模型节点对象,添加到3D场景节点下, var table: Sprite3D = this.scene.addChild(new Laya.Sprite3D(res)); //给桌子节点对象添加刚体碰撞器 var rigidBody = table...

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