Package-level declarations

Provides lazy value helpers for float-oriented model calculations.

Lazy providers defer expensive or context-sensitive float evaluation until the value is needed by animation or rendering code.

Example:


LazyFloatProvider provider = new LazyFloatProvider(50.0F);
float value = provider.updateAndGet(1.0F);

Since

3.2.0

Types

Link copied to clipboard
@ApiStatus.Internal
class LazyFloatProvider
Lazy float provider