Initialer Upload neues Unity-Projekt
This commit is contained in:
@ -0,0 +1,29 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
|
||||
namespace Valve.VR.InteractionSystem.Sample
|
||||
{
|
||||
public class trackCam : MonoBehaviour
|
||||
{
|
||||
public float speed;
|
||||
|
||||
public bool negative;
|
||||
|
||||
void Update()
|
||||
{
|
||||
Vector3 look = Camera.main.transform.position - transform.position;
|
||||
if (negative)
|
||||
{
|
||||
look = -look;
|
||||
}
|
||||
if (speed == 0)
|
||||
{
|
||||
transform.rotation = Quaternion.LookRotation(look);
|
||||
}
|
||||
else
|
||||
{
|
||||
transform.rotation = Quaternion.RotateTowards(transform.rotation, Quaternion.LookRotation(look), speed * Time.deltaTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user