Download entity added and tested.

This commit is contained in:
2020-07-11 17:09:33 -05:00
parent 47bfeee127
commit fd8317c613
10 changed files with 224 additions and 41 deletions

View File

@@ -18,6 +18,12 @@ namespace SkinnerBox.Utilities.Gameplay
this.value = value;
}
}
public float DesignatedValue {
get {
return value;
}
}
public void InterpolatePosition(float delta)
{
this.current += (value - current) * delta;