Temp default smoke scale/rotation anims

This commit is contained in:
Alden Wu 2022-09-18 22:14:54 -07:00
parent 8474335aea
commit 3eb28881e4
1 changed files with 2 additions and 8 deletions

View File

@ -58,15 +58,9 @@ protected override Color4 PointColor(SmokePoint point)
return color;
}
protected override float PointScale(SmokePoint point)
{
throw new NotImplementedException();
}
protected override float PointScale(SmokePoint point) => 1f;
protected override Vector2 PointDirection(SmokePoint point)
{
throw new NotImplementedException();
}
protected override Vector2 PointDirection(SmokePoint point) => point.Direction;
}
}
}