Skip to content

why-haxe/why-tween

Repository files navigation

Overly Simple Tween Library

API

class Tween {
  static function time(milliseconds:Int, apply:(progress:Float)->Void, ?scheduler:Scheduler):CallbackLink;
}
interface Scheduler {
	function schedule(f:Void->Bool):Void;
}

Note that when implementing Scheduler, the given callback should not be invoked immediately as that is the responsibility of the scheduler user.

About

Overly simple tween library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages