Added Camera switching needs to be smoothed soon

This commit is contained in:
Unknown
2022-02-23 21:27:36 -06:00
parent 80bf0b7702
commit 0de7c077f7
6 changed files with 131 additions and 31 deletions
+16 -2
View File
@@ -8,6 +8,9 @@ public class ScriptRayHit : MonoBehaviour
public RaycastHit2D hit;
public Ray ray;
private int counter;
public Camera followCam;
public Camera staticCam;
private bool cam = false;
// Start is called before the first frame update
void Start()
{
@@ -20,8 +23,19 @@ public class ScriptRayHit : MonoBehaviour
hit = Physics2D.Raycast(transform.position, transform.TransformDirection(Vector2.right), 4f);
if (hit)
{
//Debug.Log(" Hit a wall "+ hit.collider.name);
//Debug.Log(counter);
Debug.Log(" Hit a wall "+ hit.collider.name);
staticCam.enabled = true;
followCam.enabled = false;
counter = 0;
cam = true;
}
else if (cam && counter == 30)
{
staticCam.enabled = false;
followCam.enabled = true;
counter = 0;
cam = false;
Debug.Log("");
}
counter++;
}