You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
441 B
16 lines
441 B
using Unity.UIWidgets.animation;
|
|
using Unity.UIWidgets.painting;
|
|
|
|
namespace Unity.UIWidgets.rendering {
|
|
public class AlignmentTween : Tween<Alignment> {
|
|
public AlignmentTween(
|
|
Alignment begin = null,
|
|
Alignment end = null)
|
|
: base(begin: begin, end: end) {
|
|
}
|
|
|
|
public override Alignment lerp(float t) {
|
|
return Alignment.lerp(this.begin, this.end, t);
|
|
}
|
|
}
|
|
} |