This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
{ |
OlderNewer