upgraded the game

This commit is contained in:
2021-07-22 21:52:18 +02:00
parent 2e017145f1
commit f6035eaa38
19 changed files with 504 additions and 36 deletions
+2
View File
@@ -6,6 +6,7 @@ using UnityEngine.SceneManagement;
public class MenuPlay : MonoBehaviour
{
public LayerMask contactFilter;
public AudioSource sfx;
public MenuMouse mouse;
// Start is called before the first frame update
void Start()
@@ -18,6 +19,7 @@ public class MenuPlay : MonoBehaviour
{
if (Input.GetMouseButtonDown(0)){
if(Physics2D.CircleCast(mouse.pos, 1f, Vector2.zero, 0f, contactFilter)){
sfx.Play();
SceneManager.LoadScene("Tutorial");
}
}