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