summaryrefslogtreecommitdiff
path: root/tween.go
blob: 58c205b2ddcd167deda291cdab5d72b9f84afb7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package mt

type TweenF32 struct {
	Start, End float32
}

type TweenV2F32 struct {
	Start, End [2]float32
}

type TweenV3F32 struct {
	Start, End [3]float32
}

type TweenRangeF32 struct {
	Start, End RangeF32
}

type TweenRangeV3F32 struct {
	Start, End RangeV3F32
}