kotlin
enum class ClientItemRenderEasing(private val sampler: (Float) -> Float)ClientItemRenderEasing.apply
kotlin
fun apply(progress: Float): FloatClamp only the input progress. The sampled value is intentionally raw so overshooting curves such as back, elastic, or bounce keep their shape.
