mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 17:26:03 +08:00
19 lines
271 B
C#
19 lines
271 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using DG.Tweening;
|
|
using System;
|
|
|
|
public class TempTests : BrainBase
|
|
{
|
|
void OnEnable()
|
|
{
|
|
Debug.Log("ENABLE");
|
|
}
|
|
|
|
void OnDisable()
|
|
{
|
|
Debug.Log("DISABLE");
|
|
}
|
|
} |