public virtual PowerUpType Activate()
    {
        PlayerPlatformerController.AddPoints(points);


        Destroy(gameObject);
        return(powerUpType);
    }
 public virtual void Die()
 {
     PlayerPlatformerController.AddPoints(pointValue);
     Destroy(gameObject);
 }