• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: 其他
  • 标签: 脚本  

资源简介

压缩包中含有两个简单脚本来控制人物模型的移动和摄像机视角的跟随;除此之外还有一个.txt文档 - 文档包含个人总结的部分Unity基础快捷键与操作。

资源截图

代码片段和文件信息

using UnityEngine;
using System.Collections;

public class FollowTarget : MonoBehaviour {

    public Transform Wizard;    //Transform变换组件
    public Vector3 offset;    //向量vector3类型的偏移/offset类型

    // Use this for initialization
    // Use this for initialization
    void Start()
    {
        offset = transform.position - Wizard.position;    //计算偏移量(改变后-改变前)
    }

    // Update is called once per frame
    void Update()
    {
        transform.position = offset + Wizard.position;    //得到改变后的位置(偏移+改变前)
    }
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         579  2018-11-20 07:58  FollowTarget.cs
     文件         839  2018-11-20 07:59  Hero_Move.cs
     文件        5781  2018-11-20 07:39  Unity快捷操作与简单脚本.txt

评论

共有 条评论