summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs
blob: ff7874a509e15b31db8b681355023391be92c852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TweenAnimation;

public class TweenEventHandlerTest : MonoBehaviour , ITweenEventHandler
{
    public void OnTweenEvent(string eventName)
    {
    }

    [ExecuteInEditMode]
    public void RecvEvent(string content)
    {
        Debug.Log(content);
    }

}