This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
@@ -0,0 +1,15 @@
using Sirenix.OdinInspector;
namespace VOID.Generic.Projectile
{
[InfoBox("Starting point for this projectile's step:\n" +
"<u><b>" + nameof(FromStart) + "</b></u> from casting position\n" +
"<u><b>" + nameof(FromCaster) + "</b></u> from caster's position\n" +
"<u><b>" + nameof(FromHit) + "</b></u> from current projectile's position")]
public enum ProjectileStepStartFrom
{
FromStart,
FromCaster,
FromHit,
}
}