1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00
2017-06-02 02:31:46 +02:00

18 lines
348 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using DG.Tweening;
using DG.Tweening.Core;
using DG.Tweening.Plugins.Options;
using UnityEngine;
public class TempTests : BrainBase
{
public Transform target;
void Start()
{
target.DOShakeScale(2, 0.15f, 10, 90f, true);
}
}