31 unity blender捏脸
摘要:捏脸分为捏骨骼和捏mesh,仔细考虑了一下,发现用Blender捏mesh是最快出效果的1、下载Blender,并安装 Blender 官网:https://www.blender.org/download/2、打开Blender,创建一个常规的窗口,导入一个FBX文件3、shift+鼠标滚轮调整视
阅读全文
30 unity在3d地形上放置建筑
摘要:using System.Collections;using System.Collections.Generic;using UnityEngine; public class NewBehaviourScript : MonoBehaviour{ public Terrain terrain;
阅读全文
29. unity代码种树之删除树
摘要:从treeinstance[] treeInstances 里删除树 然后 设置terraindata.treeinstances=treeInstances 更新terraindata 再刷新地图数据 terrain.Flush(); 即可 using System.Collections;usi
阅读全文
28 unity代码种树
摘要:暂时未实现删除 using System.Collections;using System.Collections.Generic;using UnityEngine; public class NewBehaviourScript : MonoBehaviour{ public Terrain t
阅读全文