Loading...
Searching...
No Matches
Tween.h
Go to the documentation of this file.
1// Copyright (c) 2025 Dave R. Smith.
2// Malena Framework — Licensed under PolyForm Noncommercial 1.0.0; commercial use requires a paid license. See LICENSE.
3
4//
5// Created by Dave Smith on 11/13/22.
6//
7
8#ifndef MALENA_PORTFOLIO_TWEEN_H
9#define MALENA_PORTFOLIO_TWEEN_H
10
11#pragma once
12
14
15namespace ml
16{
54
55} // namespace ml
56
57#endif // MALENA_PORTFOLIO_TWEEN_H
Tween
Easing curve selection for animated movement.
Definition Tween.h:49
@ LINEAR
Constant-speed interpolation.
Definition Tween.h:50
@ EXPONENTIAL
Decelerating interpolation (ease-out).
Definition Tween.h:51
@ LAST_TWEEN
Sentinel — do not use as an actual tween value.
Definition Tween.h:52
Definition Animate.h:25