Mirror/Assets/Scenery/Tree.cs

12 lines
283 B
C#
Raw Normal View History

2021-05-16 07:10:31 +00:00
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}]");
}
}