Skip to content

Instantly share code, notes, and snippets.

@ikeryou
Last active September 1, 2016 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikeryou/349473fd24d9628eaa5ae347e358e03a to your computer and use it in GitHub Desktop.
Save ikeryou/349473fd24d9628eaa5ae347e358e03a to your computer and use it in GitHub Desktop.
イージングアウト
// 目標値
var t = 100;
// 現在値
var val = 0;
function update() {
val += (t - val) * 0.5;
if(Math.abs(t - val) < 0.5) {
val = t;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment