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

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

441. LayaAir3D中的Transform变换(ActionScript-3D基础(AS3)-LayaAir3D图形系统基础概念) [ 45%]

...矩阵 `rotation:Quaternion` 世界旋转。 `right:Vector3` [read-only] 获取向右方向。 `forward:Vector3` [read-only]获取向前方向。 #### 3D世界中的子父关系 ​ 在3D世界中父节点变换,其子节点会跟着响应的变换。但是子节点发生变换并不会影响父...

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

442. LayaAir3D中的Transform变换(TypeScript-3D基础(TS)-LayaAir3D图形系统基础概念) [ 45%]

...矩阵 `rotation:Quaternion` 世界旋转。 `right:Vector3` [read-only] 获取向右方向。 `forward:Vector3` [read-only]获取向前方向。 #### 3D世界中的子父关系 ​ 在3D世界中父节点变换,其子节点会跟着响应的变换。但是子节点发生变换并不会影响父...

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

443. 2.x引擎项目升级指南 · LayaAir3.0文档 · LAYABOX [ 45%]

...载Texture还是Texture2D,他们在内存中都只有一份,但可以获取不同类型。 Laya.loader.load("1.png").then((res)=> { /* res是Texture */ }); Laya.loader.load("1.png", Loader.Texture2D).then((res)=> { /* res是Texture2D */ }); Laya.loader.getRes("1.png"); //res是Texture Laya...

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

444. laya.display.Input_API3.0 [ 44%]

...且不会随着绘制内容的变化而变化,如果想根据绘制内容获取宽高,可以设置本属性为true,或者通过getBounds方法获取。设置为true,对性能有一定影响。 hitTestPrior hitTestPrior: boolean = false Inherited from Text.hitTestPrior Defined in laya/display...

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

445. 3D寻路 · LayaAir3.0文档 · LAYABOX [ 44%]

...this.index].x; this._position.z = this.resPath[this.index++].y; //HeightMap获取高度数据 this._position.y = this.terrainSprite.getHeight(this._position.x, this._position.z); if (isNaN(this._position.y)) { this._position.y = this.moveSprite3D.transform.position.y; } this._tarPosition.x = this._p...

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

446. Byte二进制读写(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 44%]

...);//清除所有数据归零。 ``` - **getSystemEndian()**:string[static] 获取系统的字节存储顺序。 ```typescript console.log(Laya.Byte.getSystemEndian());//打印系统的字节顺序 ``` - ### 属性 - **BIG_ENDIAN** : string= bigEndian[static] 表示多字节数字的最高有效字...

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

447. ShaderPass介绍(JavaScript-3D基础(JS)-LayaAir3D之shader) [ 43%]

...成渲染性能的下降。 ​**ShaderPass中比较重要的属性:** 获取渲染状态。获取后还能对此进行修改。 ```typescript renderState(): RenderState ``` ### 1.多ShaderPass简单示例 下方示例来自于官方多Pass描边示例([demo示例](http://layaair2.ldc2.layabox.c...

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

448. Byte二进制读写(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 43%]

...);//清除所有数据归零。 ``` - **getSystemEndian()**:String[static] 获取系统的字节存储顺序。 ```typescript trace(Byte.getSystemEndian());//打印系统的字节顺序 ``` - ### 属性 - **BIG_ENDIAN** : String= bigEndian[static] 表示多字节数字的最高有效字节位于字...

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

449. Byte二进制读写(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 43%]

...);//清除所有数据归零。 ``` - **getSystemEndian()**:string[static] 获取系统的字节存储顺序。 ```typescript console.log(Laya.Byte.getSystemEndian());//打印系统的字节顺序 ``` - ### 属性 - **BIG_ENDIAN** : string= bigEndian[static] 表示多字节数字的最高有效字...

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

450. 关联shader的uniform(JavaScript-3D基础(JS)-LayaAir3D之shader) [ 42%]

...opertyNameToID("u_OutlineLightness"); ``` 关联完成后,就可以通过获取到的ID就可以去修改对应的属性了。 下面是我们的自定义材质中对 _shaderValues 使用的封装。 > 封装 _shaderValues 实现修改材质属性 ```typescript /** * 获取漫反射贴图。 * @re...

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