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

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

1. 资源加载(ActionScript-3D基础(AS3)-LayaAir3D之资源加载) [ 100%]

...dler.create(null, function(tex:Texture2D):void { //使用纹理 var earth1:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere(5, 32, 32))) as MeshSprite3D; earth1.transform.translate(new Vector3(10, 20, -8)); var earthMat:BlinnPhongMaterial = new BlinnPhongMaterial(); earthMat...

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

2. PBRStandardMaterial材质详解(ActionScript-3D基础(AS3)-模型材质详解) [ 98%]

...BRStandardMaterial.SmoothnessSource_MetallicGlossTexture_Alpha; var barrel:MeshSprite3D = scene.getChildByName("Wooden_Barrel") as MeshSprite3D; var barrel1:MeshSprite3D = scene.getChildByName("Wooden_Barrel (1)") as MeshSprite3D; var barrel2:MeshSprite3D = scene.getChildByName("Wooden_Barrel (2)") ...

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

3. PBRStandardMaterial材质详解(TypeScript-3D基础(TS)-模型材质详解) [ 91%]

...sTexture_Alpha; var barrel = scene.getChildByName("Wooden_Barrel") as Laya.MeshSprite3D; var barrel1 = scene.getChildByName("Wooden_Barrel (1)") as Laya.MeshSprite3D; var barrel2 = scene.getChildByName("Wooden_Barrel (2)") as Laya.MeshSprite3D; var barrel3 = scene.getChildByName("Wooden_Barrel (3)")...

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

4. 物理碰撞器(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 91%]

...创建了一个平面。如图1所示。 ```typescript //平面 var plane:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createPlane(10, 10, 10, 10))) as MeshSprite3D; //新建材质 var planeMat:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/threeDimen/Physics/gras...

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

5. 资源加载(TypeScript-3D基础(TS)-LayaAir3D之资源加载) [ 90%]

...(null, function(tex) { //使用纹理 var earth1 = scene.addChild(new Laya.MeshSprite3D(PrimitiveMesh.createSphere(5, 32, 32))); earth1.transform.translate(new Laya.Vector3(10, 20, -8)); var earthMat = new Laya.BlinnPhongMaterial(); earthMat.albedoTexture = tex; earthMat.albedoIntensity = 1; earth1....

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

6. 物理刚体(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 86%]

... ```typescript //新建一个球体模型并添加到舞台上 var sphere:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere(1))) as MeshSprite3D; //新建一个球形的碰撞盒 var sphereShape:SphereColliderShape = new SphereColliderShape(1); //给球添加刚体 var sphere...

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

7. 物理刚体(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 85%]

...typescript //新建一个球体模型并添加到舞台上 var sphere:Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(PrimitiveMesh.createSphere(1))) as Laya.MeshSprite3D; //新建一个球形的碰撞盒 var sphereShape:Laya.SphereColliderShape = new Laya.SphereColliderShape(1); //给球...

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

8. 物理碰撞器(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 84%]

...图1所示。 ```typescript //平面 var plane = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane(10, 10, 10, 10))) as Laya.MeshSprite3D; //新建材质 var planeMat:Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", La...

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

9. 资源加载(JavaScript-3D基础(JS)-LayaAir3D之资源加载) [ 83%]

...(null, function(tex) { //使用纹理 var earth1 = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere(5, 32, 32))); earth1.transform.translate(new Laya.Vector3(10, 20, -8)); var earthMat = new Laya.BlinnPhongMaterial(); earthMat.albedoTexture = tex; earthMat.albedoIntensity = 1; ea...

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

10. Effect材质详解(ActionScript-3D基础(AS3)-模型材质详解) [ 83%]

...egory=3d&group=Material&name=EffectMaterialDemo)): ```typescript var earth:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere())) as MeshSprite3D; earth.transform.position = new Vector3(0, 0, 0); //创建EffectMaterial材质 var material:EffectMaterial = new EffectMaterial(); ...

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