Answers for "onmouseclick 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

C# Answers by Framework

Browse Popular Code Answers by Language