public void AddFallingPoints(Vector3 position, int value, int category)
    {
        var falling2 = (FallingPoints)dash.GetDashObject(FallingPoints.DashID);

        falling2.Setup(value, category);
        falling2.StartFalling(position);
    }