您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
45 行
1.1 KiB
45 行
1.1 KiB
using System;
|
|
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
namespace UnityStandardAssets.Utility
|
|
{
|
|
[Serializable]
|
|
public class LerpControlledBob
|
|
{
|
|
public float BobDuration;
|
|
public float BobAmount;
|
|
|
|
private float m_Offset = 0f;
|
|
|
|
|
|
// provides the offset that can be used
|
|
public float Offset()
|
|
{
|
|
return m_Offset;
|
|
}
|
|
|
|
|
|
public IEnumerator DoBobCycle()
|
|
{
|
|
// make the camera move down slightly
|
|
float t = 0f;
|
|
while (t < BobDuration)
|
|
{
|
|
m_Offset = Mathf.Lerp(0f, BobAmount, t/BobDuration);
|
|
t += Time.deltaTime;
|
|
yield return new WaitForFixedUpdate();
|
|
}
|
|
|
|
// make it move back to neutral
|
|
t = 0f;
|
|
while (t < BobDuration)
|
|
{
|
|
m_Offset = Mathf.Lerp(BobAmount, 0f, t/BobDuration);
|
|
t += Time.deltaTime;
|
|
yield return new WaitForFixedUpdate();
|
|
}
|
|
m_Offset = 0f;
|
|
}
|
|
}
|
|
}
|