Answers for "register click on 3d object unity"

C#
0

how to make a 3d object do something when clicked on

using UnityEngine;
 using System.Collections;
 
 public class OnMouseDownExample : MonoBehaviour 
 {
     void OnMouseDown()
     {
         print (name);    
     }
 }
Posted by: Guest on November-16-2020
0

unity onclick object

void Update () {
     
 }
  void OnMouseDown(){
         // this object was clicked - do something
     Destroy (this.gameObject);
  }
Posted by: Guest on June-20-2020

C# Answers by Framework

Browse Popular Code Answers by Language