mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
10 lines
223 B
C#
10 lines
223 B
C#
using UnityEngine;
|
|
|
|
public class Tree : MonoBehaviour
|
|
{
|
|
void OnTriggerEnter(Collider col)
|
|
{
|
|
Debug.LogWarning($"Tree [{gameObject.scene.name}] OnTrigger: {col.name}[{col.gameObject.scene.name}]");
|
|
}
|
|
}
|