mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-08-24 19:34:38 -05:00
Cleaned up code
Slide Works again Ragdoll works again Cam is stable New Debugging prefab
This commit is contained in:
26
Assets/Scripts/PlayerScripts/DebugPlayer/dPlayCam.cs
Normal file
26
Assets/Scripts/PlayerScripts/DebugPlayer/dPlayCam.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using MLAPI;
|
||||
using UnityEngine;
|
||||
|
||||
public class dPlayCam : NetworkBehaviour
|
||||
{
|
||||
public GameObject player;
|
||||
|
||||
private Vector3 offset;
|
||||
private Vector3 rad;
|
||||
|
||||
void Start ()
|
||||
{
|
||||
rad = (transform.position - player.transform.position);
|
||||
}
|
||||
|
||||
void Update ()
|
||||
{
|
||||
if (!IsLocalPlayer) { return; }
|
||||
|
||||
offset = transform.parent.forward * rad.magnitude;
|
||||
transform.position = new Vector3((player.transform.position.x - offset.x),((player.transform.position.y - offset.y)+2),(player.transform.position.z - offset.z));
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user