unity3d
文章平均质量分 70
行走的牧马人
CSCSC
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
坦克移动
using UnityEngine; using System.Collections; using UnityStandardAssets.Utility; using TouchControlsKit; public class TankMove : MonoBehaviour { // 坦克移动变量 public float moveSpeed = 20.0f; public flo原创 2016-12-12 10:03:28 · 960 阅读 · 0 评论 -
Unity3d相机跟随角色移动
using UnityEngine; using System.Collections; public class follwCam : MonoBehaviour { public Transform targetTr; public float dist = 10f; public float height = 3.0f; public float dampTrace = 20.0f原创 2016-11-25 16:38:46 · 3609 阅读 · 1 评论
分享