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

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

461. timer.loop帧率高于物理帧率移动父级导致子物体本地坐标异常 [ 49%]

...(!this.cubeP){             this.cubeP = this.scene.addChild(new Laya.Sprite3D());             this.cube = this.cubeP.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1)));             let rigidbody = this.cube.addComponent(Laya.Rigidbody3D);             rigid...

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

462. 组件装饰器说明 · LayaAir3.0文档 · LAYABOX [ 49%]

...性标识的类型支持引擎对象类型(例如:Laya.Vector3、Laya.Sprite3D、Laya.Camera等)、自定义的对象类型(需要标记@regClass())、以及TS语言的基本类型。 2.5.1 引擎对象类型 引擎对象类型的理解比较简单,暴露组件属性之后,直接传...

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

463. BlinnPhong材质详解(JavaScript-3D基础(JS)-模型材质详解) [ 49%]

...以查看官方示例([demo地址]())。 ```typescript var material = meshSprite3D.meshRenderer.material; //法线贴图 Laya.Texture2D.load(normalMapUrl[i], Laya.Handler.create(this, function(texture) { //设置发现贴图 material.normalTexture = texture; })); ``` ![](img/5.png)(图5) ##### 高...

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

464. BlinnPhong材质详解(TypeScript-3D基础(TS)-模型材质详解) [ 48%]

...以查看官方示例([demo地址]())。 ```typescript var material = meshSprite3D.meshRenderer.material as Laya.BlinnPhongMaterial; //法线贴图 Laya.Texture2D.load(normalMapUrl[i], Laya.Handler.create(this, function(texture) { //设置发现贴图 material.normalTexture = texture; })); ``` ![](i...

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

465. 支付宝小游戏 · LayaAir3.0文档 · LAYABOX [ 48%]

...der.load("sub1/Cube.lh").then((res: Laya.PrefabImpl) => { let sp3: Laya.Sprite3D = res.create() as Laya.Sprite3D; this.scene3d.addChild(sp3); }); }) Laya.loader.loadPackage("sub2", this.printProgress).then(() => { Laya.loader.load("sub2/Sphere.lh").then((res: any) => { let sp3 = res.create(...

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

466. 3d中 缓动往一个点转向并移动的问题 [ 48%]

...tyPlugin 使用须知-版本更新-问题解答(最新版本:1.7.16) sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale 缓动Tween能用在3D物体或者特效上面吗? btn 鼠标移动上去默认文本颜色是绿色,我想换成其他颜色,如何操作? ...

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

467. laya.d3.renderobjs.nativeobj.NativeTransform3D_API3.0 [ 48%]

...ocalNormal translate Constructors constructor new NativeTransform3D(owner: Sprite3D): NativeTransform3D Overrides Transform3D.__constructor Defined in laya/d3/RenderObjs/NativeOBJ/NativeTransform3D.ts:376 创建一个 Transform3D 实例。 Parameters owner: Sprite3D 所属精灵。 Returns NativeTra...

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

468. 多摄像机窗口的使用(JavaScript-3D基础(JS)-LayaAir3D之Camera) [ 48%]

...tionLight = scene.addChild(new Laya.DirectionLight()); //加载模型 Laya.Sprite3D.load("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(null, function(sp){ //将模型加到场景上 var layaMonkey = scene.addChild(sp); })) ``` 编译运行上述代码,运行效果如图6...

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

469. BlinnPhong材质详解(ActionScript-3D基础(AS3)-模型材质详解) [ 48%]

...例([demo地址]())。 ```typescript var material:BlinnPhongMaterial = meshSprite3D.meshRenderer.material as BlinnPhongMaterial; //法线贴图 Texture2D.load(normalMapUrl[i], Handler.create(this, function(texture:Texture2D):void { //设置发现贴图 material.normalTexture = texture; })); ``` ![](...

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

470. Laya.Tween.to 用这个做缓动动效, 变动scale值有问题, [ 48%]

...回复被折叠 要回复问题请先登录 发起人 zkang5 相关问题 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale 通过绘制纹理生成的图片,改变scale时会出现图片不绘制的情况 Laya.Tween.to scale如何实现图片不停地放大缩小? 3D...

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