Skip to content

Instantly share code, notes, and snippets.

View TatsuyaOGth's full-sized avatar

Tatsuya Ogusu TatsuyaOGth

View GitHub Profile
#!/bin/sh
# can additional arguments
# ex.: $ sh rsync_tool.sh --checksum
echo "Input source directory path (no need end slash)"
read SRC
echo "Input destination directory path (no need end slash)"
read DST
@TatsuyaOGth
TatsuyaOGth / Easing.cs
Last active December 23, 2021 11:55
Easing Class for Unity
using UnityEngine;
using System.Collections;
/// <summary>
/// Easing Functions,
/// All Arguments "t" are values between 0.0f to 1.0f.
/// http://easings.net/
/// </summary>
public static class Easing
{