Answers for "button.onlick unity"

C#
1

onmouseclick unity

using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;public class ExampleClass : MonoBehaviour
{
    void OnMouseDown()
    {
        // Destroy the gameObject after clicking on it
        Destroy(gameObject);
    }
}
Posted by: Guest on January-29-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