WrenSupport.callReflowWhenScriptsChange

Call this in your onAnimate callback. This polls script regularly and force a full redraw.

class WrenSupport
@nogc nothrow
bool
callReflowWhenScriptsChange
(
double dt
)

Return Value

Type: bool

true if no runtime or compile-time error.

Examples

override void onAnimate(double dt, double time)
{
   context.wrenSupport.callReflowWhenScriptsChange(dt);
}

Meta