12 lines
317 B
C#
12 lines
317 B
C#
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]);
|
|
}
|
|
}
|