Uses of Class
com.badlogic.gdx.math.Interpolation
-
Packages that use Interpolation Package Description com.badlogic.gdx.math com.badlogic.gdx.scenes.scene2d.actions com.badlogic.gdx.scenes.scene2d.ui -
-
Uses of Interpolation in com.badlogic.gdx.math
Subclasses of Interpolation in com.badlogic.gdx.math Modifier and Type Class Description static classInterpolation.Bouncestatic classInterpolation.BounceInstatic classInterpolation.BounceOutstatic classInterpolation.Elasticstatic classInterpolation.ElasticInstatic classInterpolation.ElasticOutstatic classInterpolation.Expstatic classInterpolation.ExpInstatic classInterpolation.ExpOutstatic classInterpolation.Powstatic classInterpolation.PowInstatic classInterpolation.PowOutstatic classInterpolation.Swingstatic classInterpolation.SwingInstatic classInterpolation.SwingOutFields in com.badlogic.gdx.math declared as Interpolation Modifier and Type Field Description static InterpolationInterpolation. circlestatic InterpolationInterpolation. circleInstatic InterpolationInterpolation. circleOutstatic InterpolationInterpolation. fadestatic InterpolationInterpolation. linearstatic InterpolationInterpolation. pow2InInversestatic InterpolationInterpolation. pow2OutInversestatic InterpolationInterpolation. pow3InInversestatic InterpolationInterpolation. pow3OutInversestatic InterpolationInterpolation. sinestatic InterpolationInterpolation. sineInstatic InterpolationInterpolation. sineOutstatic InterpolationInterpolation. smoothAka "smoothstep".static InterpolationInterpolation. smooth2static InterpolationInterpolation. smootherBy Ken Perlin.Methods in com.badlogic.gdx.math with parameters of type Interpolation Modifier and Type Method Description TVector. interpolate(T target, float alpha, Interpolation interpolator)Interpolates between this vector and the given target vector by alpha (within range [0,1]) using the given Interpolation method.Vector2Vector2. interpolate(Vector2 target, float alpha, Interpolation interpolation)Vector3Vector3. interpolate(Vector3 target, float alpha, Interpolation interpolator)Vector4Vector4. interpolate(Vector4 target, float alpha, Interpolation interpolator) -
Uses of Interpolation in com.badlogic.gdx.scenes.scene2d.actions
Methods in com.badlogic.gdx.scenes.scene2d.actions that return Interpolation Modifier and Type Method Description InterpolationTemporalAction. getInterpolation()Methods in com.badlogic.gdx.scenes.scene2d.actions with parameters of type Interpolation Modifier and Type Method Description static AlphaActionActions. alpha(float a, float duration, Interpolation interpolation)Transitions from the alpha at the time this action starts to the specified alpha.static ColorActionActions. color(Color color, float duration, Interpolation interpolation)Transitions from the color at the time this action starts to the specified color.static AlphaActionActions. fadeIn(float duration, Interpolation interpolation)Transitions from the alpha at the time this action starts to an alpha of 1.static AlphaActionActions. fadeOut(float duration, Interpolation interpolation)Transitions from the alpha at the time this action starts to an alpha of 0.static MoveByActionActions. moveBy(float amountX, float amountY, float duration, Interpolation interpolation)static MoveToActionActions. moveTo(float x, float y, float duration, Interpolation interpolation)static MoveToActionActions. moveToAligned(float x, float y, int alignment, float duration, Interpolation interpolation)static RotateByActionActions. rotateBy(float rotationAmount, float duration, Interpolation interpolation)static RotateToActionActions. rotateTo(float rotation, float duration, Interpolation interpolation)static ScaleByActionActions. scaleBy(float amountX, float amountY, float duration, Interpolation interpolation)static ScaleToActionActions. scaleTo(float x, float y, float duration, Interpolation interpolation)voidTemporalAction. setInterpolation(Interpolation interpolation)static SizeByActionActions. sizeBy(float amountX, float amountY, float duration, Interpolation interpolation)static SizeToActionActions. sizeTo(float x, float y, float duration, Interpolation interpolation)Constructors in com.badlogic.gdx.scenes.scene2d.actions with parameters of type Interpolation Constructor Description FloatAction(float start, float end, float duration, Interpolation interpolation)Creates a FloatAction that transitions from start to end.IntAction(int start, int end, float duration, Interpolation interpolation)Creates a FloatAction that transitions from start to end.TemporalAction(float duration, Interpolation interpolation) -
Uses of Interpolation in com.badlogic.gdx.scenes.scene2d.ui
Methods in com.badlogic.gdx.scenes.scene2d.ui with parameters of type Interpolation Modifier and Type Method Description voidProgressBar. setAnimateInterpolation(Interpolation animateInterpolation)Sets the interpolation to use forProgressBar.setAnimateDuration(float).voidProgressBar. setVisualInterpolation(Interpolation interpolation)Sets the interpolation to use for display.voidSlider. setVisualInterpolationInverse(Interpolation interpolation)Sets the inverse interpolation to use for display.
-