Skip to content

Instantly share code, notes, and snippets.

@aoirint
Last active December 2, 2017 08:42
Show Gist options
  • Save aoirint/1ad07498331667d4870ddc31caa07081 to your computer and use it in GitHub Desktop.
Save aoirint/1ad07498331667d4870ddc31caa07081 to your computer and use it in GitHub Desktop.
インターバルサンプル
# Interval
$interval = 1000
$counter = 0
# 例えばこれが自動的・定期的に他のスクリプトから呼ばれるとして
def on_update()
$counter ++
if $interval < $counter
# do something
$counter = 0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment