1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00
2015-04-16 21:44:25 +02:00

14 lines
252 B
C#

using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
using System;
public class TempTests : BrainBase
{
void OnMouseDown()
{
this.GetComponent<DOTweenAnimation>().DOPlay();
}
}