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

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

201. laya.d3.core.trail.TrailSprite3D [ 65%]

...umentationAll Packages | All Classes | Index | Frames No Frames TrailSprite3DProperties | Methods | Events Packagelaya.d3.core.trailClasspublic class TrailSprite3DInheritanceTrailSprite3D RenderableSprite3D Sprite3D Node EventDispatcher Object TrailSprite3D 类用于创建拖尾渲染精灵...

来源: Laya2.0_api 发布时间: 20190513

202. 抖音小游戏 · LayaAir3.0文档 · LAYABOX [ 65%]

...egClass() export class Script extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Scene3D }) scene3d: Laya.Scene3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { //...

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

203. laya.d3.core.pixelLine.PixelLineSprite3D [ 65%]

...tationAll Packages | All Classes | Index | Frames No Frames PixelLineSprite3DProperties | Methods | Events Packagelaya.d3.core.pixelLineClasspublic class PixelLineSprite3DInheritancePixelLineSprite3D RenderableSprite3D Sprite3D Node EventDispatcher Object PixelLineSprite3D 类用于像素...

来源: Laya2.0_api 发布时间: 20190513

204. 在Unity中导出拖尾系统(ActionScript-3D基础(AS3)-LayaAir3D之拖尾系统) [ 65%]

...原本示例代码,去掉了示例代码的旋转摄像机 //加载拖尾 Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Handler.create(this,function(sp:Sprite3D):void{ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果...

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

205. 3D模型怎么删除?没回切换页面原来的模型都还在? [ 64%]

...his.scene); 3.新建模型,并且添加B页面的3D场景中 var map: Laya.Sprite3D = Laya.Sprite3D.load("cj/cj.lh"); this.scene.addChild(map);   4.切换页面 private playGame(): void { Laya.stage.removeChild(this.welcomePanel); this.gamePanel = new GamePanel();//不管是不是重新new的,模...

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

206. 播放3Dmax导出的lrani动画问题 [ 64%]

...lm和lrani文件等。 以下是代码部分(as3):   var mesh:MeshSprite3D = scene.addChild(Sprite3D.load("aim/aim-aim.lm")); rootAnimations = mesh.addComponent(RigidAnimations) as RigidAnimations; //rootAnimations.url = "aim/aim.lrani"; rootAnimations.templet = AnimationTemplet.load("aim/aim...

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

207. AS项目怎么使用类成员变量 [ 64%]

...答(最新版本:1.7.16) TS项目使用matter.js库无智能提示 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale 微信小游戏:HTMLDivElement的使用 LayaAirIDE下如何使用mask? 微信小游戏如何使用ttf字体? 使用3D时候,Property 'getCompo...

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

208. 怎么没看到有资源加载方面的教程,比如不同场景下的不同资源文件的加载? [ 64%]

...是3d的加载,2d的加载就是用loader的load方法,3d的就是用Sprite3Dload方法 2017-12-31 0 0 分享 微博 QZONE 微信 ok10000 赞同来自: 怎么没有像egret那样介绍资源加载的教程? 2017-12-31 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 ...

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

209. 有关Laya3D碰撞检测疑问 [ 64%]

...ht.direction = new Laya.Vector3(1, -1, -1);  //平面 var plane: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(new Laya.PlaneMesh(6, 6, 10, 10))) as Laya.MeshSprite3D; var planeMat: Laya.StandardMaterial = new Laya.StandardMaterial(); planeMat.diffuseTexture = Laya.Texture2D.load("../../...

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

210. 物理碰撞器(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 64%]

...1所示。 ```typescript //平面 var plane = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane(10, 10, 10, 10))); //新建材质 var planeMat = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function(tex) { planeMat...

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