摄像机按照自设的路径围绕并朝着某一个物体进行360度旋转

本文介绍了一个使用Unity实现的慢动作效果脚本,通过设置一系列路径节点,使摄像机平滑地沿着这些路径移动,并调整移动速度和插值方式以达到理想的慢动作视觉效果。该脚本适用于游戏开发中需要创建流畅慢动作镜头场景的情况。

using UnityEngine;
using System.Collections;

public class Slow_Motion : MonoBehaviour
{

public Transform motionRoot;
public Transform Aim;
int moveIndex = 0;

public float moveSpeed = 3f;
float moveNeedTime = 0;
float timer = 0;

public Transform motionCamera;
void Awake()
{
ReInitData();
}


void Update()
{
if (motionRoot != null && motionRoot.childCount > 0)
{

if (moveIndex <= motionRoot.childCount - 1)
{
timer += Time.deltaTime;
if (timer < moveNeedTime)
{
float progress = timer / moveNeedTime;
if (motionCamera != null)
{

if (moveIndex < motionRoot.childCount - 1)
{
//球形插值和直线插值
//motionCamera.position = Vector3.Slerp(motionWayRoot.GetChild(moveIndex).position, motionWayRoot.GetChild(moveIndex+1).position, progress);
motionCamera.position = Vector3.Lerp(motionRoot.GetChild(moveIndex).position, motionRoot.GetChild(moveIndex + 1).position, progress);
}
else
{
//motionCamera.position = Vector3.Slerp(motionWayRoot.GetChild(moveIndex).position, motionWayRoot.GetChild(moveIndex+1).position, progress);
motionCamera.position = Vector3.Lerp(motionRoot.GetChild(motionRoot.childCount - 1).position, motionRoot.GetChild(0).position, progress);

}

motionCamera.LookAt(Aim);
}
}
else
{
moveIndex++;
ReInitData(moveIndex);
}
}
else
{
ReInitData();
}

}

}

void OnDrawGizmos()
{
if (motionRoot != null && motionRoot.childCount > 0)
{
int c = motionRoot.childCount;
for (int i = 0; i + 1 < c; i++)
{
Debug.DrawLine(motionRoot.GetChild(i).position, motionRoot.GetChild(i + 1).position, Color.green);
}
Debug.DrawLine(motionRoot.GetChild(motionRoot.childCount - 1).position, motionRoot.GetChild(0).position, Color.green);
}
}

void ReInitData(int moveIndex_ = 0)
{
moveIndex = moveIndex_;
timer = 0;
if (motionRoot != null && motionRoot.childCount > 0)
{
if (motionRoot.childCount >= 2)
{
if (moveIndex < motionRoot.childCount - 1)
{
moveNeedTime = Vector3.Distance(motionRoot.GetChild(moveIndex).position, motionRoot.GetChild(moveIndex + 1).position) / moveSpeed;
}
else
{
moveNeedTime = Vector3.Distance(motionRoot.GetChild(motionRoot.childCount - 1).position, motionRoot.GetChild(0).position) / moveSpeed;
}

}
}
}
}

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值