mirror of
https://github.com/frizbee19/FebGameJam.git
synced 2026-09-11 08:17:01 +00:00
Added Camera switching needs to be smoothed soon
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user