Skip to content

Instantly share code, notes, and snippets.

@baobao
Created January 24, 2021 21:32
Show Gist options
  • Save baobao/50307900751e0a4506eb2bdbae3fa80e to your computer and use it in GitHub Desktop.
Save baobao/50307900751e0a4506eb2bdbae3fa80e to your computer and use it in GitHub Desktop.
初めてのDOTween
using System.Collections;
using UnityEngine;
using DG.Tweening;
public class HelloWorldDOTween : MonoBehaviour
{
void Start()
{
transform.DOLocalMove(new Vector3(10f, 0, 0), 1f);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment