23 lines
387 B
C#
23 lines
387 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityEngine.EventSystems;
|
|
public class Test : MonoBehaviour
|
|
{
|
|
public Sprite thisSprite;
|
|
public Camera mainCamera;
|
|
public CanvasGroup thisCG;
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|