TweenerManager
Introduction
Code Example - TweenAsync
await TweenerManager.Self.TweenAsync(
owner: GumObjectInstance,
assignmentAction: (newValue) => GumObjectInstance.X = newValue,
from: 0,
to: 100,
during: 3, // seconds
interpolation: InterpolationType.Quadratic,
easing: Easing.Out);Last updated
Was this helpful?