Danmaku_no_Kyojin.BulletEngine.BulletMLVanish.Run C# (CSharp) Method

Run() public method

Run this task and all subtasks against a bullet This is called once a frame during runtime.
public Run ( Bullet bullet ) : ERunStatus
bullet Bullet The bullet to update this task against.
return ERunStatus
        public override ERunStatus Run(Bullet bullet)
        {
            //remove the bullet via the bullet manager interface
            IBulletManager manager = bullet.MyBulletManager;
            Debug.Assert(null != manager);
            manager.RemoveBullet(bullet);
            return ERunStatus.End;
        }
BulletMLVanish