28 lines
498 B
C#
28 lines
498 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class NewBehaviourScript : MonoBehaviour
|
|
{
|
|
public GameObject GameObject;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
[ContextMenu("1111111111111")]
|
|
public void sad()
|
|
{
|
|
if (!GameObject)
|
|
Debug.Log(1);
|
|
if (GameObject == null)
|
|
Debug.Log(1);
|
|
}
|
|
}
|