mirror of
https://github.com/frizbee19/FebGameJam.git
synced 2026-09-11 08:17:01 +00:00
31 lines
662 B
C#
31 lines
662 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class ScriptRayHit : MonoBehaviour
|
|
{
|
|
|
|
public RaycastHit2D hit;
|
|
public Ray ray;
|
|
private int counter;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
counter = 0;
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
hit = Physics2D.Raycast(transform.position, transform.TransformDirection(Vector2.right), 4f);
|
|
if (hit)
|
|
{
|
|
//Debug.Log(" Hit a wall "+ hit.collider.name);
|
|
//Debug.Log(counter);
|
|
}
|
|
counter++;
|
|
}
|
|
|
|
|
|
}
|