dice selection working

This commit is contained in:
2022-11-02 12:52:21 +01:00
parent 3157ae5040
commit 73ee069e8b
5 changed files with 428 additions and 137 deletions

11
Assets/Scripts/Test.cs Normal file
View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Test : MonoBehaviour
{
public void testPass() {
Debug.Log("Passhthrough test: " + FindObjectOfType<Dice>().getDices()[0]);
Debug.Log("Passhthrough test: " + FindObjectOfType<Dice>().getDices()[1]);
}
}