RaylibEaseExtensionBase<R extends RaylibBase> class
abstract
Exposes Raylib's easing functions as module-level calls.
All functions share the same parameter convention (Robert Penner's easing):
tcurrent timebstart valuecchange in value (end - start)dtotal duration
Returns the interpolated value at time t.
- Inheritance
-
- Object
- RaylibModule<
R> - RaylibEaseExtensionBase
Constructors
- RaylibEaseExtensionBase(R rl)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- rl → R
-
finalinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
debug(
bool v) → void -
Enables or disables debug logging for this module.
inherited
-
debugError(
String message) → void -
Logs
messageat error level if debug is enabled andmessagepasses all filters.inherited -
debugFilter(
bool filter(String)) → void -
Adds a predicate that gates debug output. Only messages satisfying at least one filter are logged.
inherited
-
debugInfo(
String message) → void -
Logs
messageat info level if debug is enabled andmessagepasses all filters.inherited -
debugTime(
bool v) → void -
Enables or disables per-call timing output alongside debug logs.
inherited
-
debugWarn(
String message) → void -
Logs
messageat warn level if debug is enabled andmessagepasses all filters.inherited -
disableSync<
T> (T f()) → T -
Executes
fwith RaylibTempBase syncing temporarily disabled, restoring the previous sync state afterward.inherited -
dispose(
) → void -
Calls all registered onDispose callbacks and clears them.
inherited
-
doLoad(
) → void -
Ensures load is called exactly once, regardless of how many times doLoad is invoked.
inherited
-
EaseBackIn(
num t, num b, num c, num d) → double - Back In
-
EaseBackInOut(
num t, num b, num c, num d) → double - Back In Out
-
EaseBackOut(
num t, num b, num c, num d) → double - Back Out
-
EaseBounceIn(
num t, num b, num c, num d) → double - Bounce In
-
EaseBounceInOut(
num t, num b, num c, num d) → double - Bounce In Out
-
EaseBounceOut(
num t, num b, num c, num d) → double - Bounce Out
-
EaseCircIn(
num t, num b, num c, num d) → double - Circular In
-
EaseCircInOut(
num t, num b, num c, num d) → double - Circular In Out
-
EaseCircOut(
num t, num b, num c, num d) → double - Circular Out
-
EaseCubicIn(
num t, num b, num c, num d) → double - Cubic In
-
EaseCubicInOut(
num t, num b, num c, num d) → double - Cubic In Out
-
EaseCubicOut(
num t, num b, num c, num d) → double - Cubic Out
-
EaseElasticIn(
num t, num b, num c, num d) → double - Elastic In
-
EaseElasticInOut(
num t, num b, num c, num d) → double - Elastic In Out
-
EaseElasticOut(
num t, num b, num c, num d) → double - Elastic Out
-
EaseExpoIn(
num t, num b, num c, num d) → double - Exponential In
-
EaseExpoInOut(
num t, num b, num c, num d) → double - Exponential In Out
-
EaseExpoOut(
num t, num b, num c, num d) → double - Exponential Out
-
EaseLinearIn(
num t, num b, num c, num d) → double - Linear In
-
EaseLinearInOut(
num t, num b, num c, num d) → double - Linear In Out
-
EaseLinearNone(
num t, num b, num c, num d) → double - Linear
-
EaseLinearOut(
num t, num b, num c, num d) → double - Linear Out
-
EaseQuadIn(
num t, num b, num c, num d) → double - Quadratic In
-
EaseQuadInOut(
num t, num b, num c, num d) → double - Quadratic In Out
-
EaseQuadOut(
num t, num b, num c, num d) → double - Quadratic Out
-
EaseSineIn(
num t, num b, num c, num d) → double - Sine In
-
EaseSineInOut(
num t, num b, num c, num d) → double - Sine In Out
-
EaseSineOut(
num t, num b, num c, num d) → double - Sine Out
-
load(
) → void -
Override to perform one-time module initialization. Called by doLoad.
inherited
-
logError(
Object? message) → void -
inherited
-
logInfo(
Object? message) → void -
inherited
-
logWarn(
Object? message) → void -
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
onDispose(
void fn()) → void -
Registers
fnto be called when this module is disposed.inherited -
run<
T> (String name(), T f()) → T -
Executes
f, logging its label (and optionally timing it) when debug is enabled and the label passes all filters.inherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited