Answers for "click event 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 click object

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

C# Answers by Framework

Browse Popular Code Answers by Language