coin db working

This commit is contained in:
2023-05-02 13:46:38 +02:00
parent 25d792e0fd
commit b94c80b293
27 changed files with 379 additions and 652 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class IsGrounded : MonoBehaviour
{
public bool isGrounded = true;
private void OnCollisionEnter(Collision other) {
//Debug.Log("pc <color=blue>"+other.gameObject.name+"</color>");
isGrounded = true;
}
}