TTTTT.cs 504 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public class TTTTT : MonoBehaviour
  6. {
  7. // Start is called before the first frame update
  8. void Start()
  9. {
  10. }
  11. // Update is called once per frame
  12. void Update()
  13. {
  14. }
  15. private void OnCollisionEnter(Collision other)
  16. {
  17. Debug.Log("OnCollisionEnter");
  18. }
  19. private void OnTriggerEnter(Collider other)
  20. {
  21. Debug.Log("OnTriggerEnter");
  22. }
  23. }