sheivan Member Nov 3, 2020 #1 For some reason I cannot run while using wands even if this is changed in basewand public void Cast(Spell spell) { bool m = this.Movable; this.Movable = true; spell.Cast(); this.Movable = m; } Not sure whats wrong
For some reason I cannot run while using wands even if this is changed in basewand public void Cast(Spell spell) { bool m = this.Movable; this.Movable = true; spell.Cast(); this.Movable = m; } Not sure whats wrong
Morgion Member Nov 3, 2020 #2 This will make movable your wand, not caster. I think you are looking for something like OnCasterMoving() in Spell.cs
This will make movable your wand, not caster. I think you are looking for something like OnCasterMoving() in Spell.cs