public static void SetAlpha(this PedalGraphic pedalGraphic, float amount)
        {
            var temp = pedalGraphic.color;

            temp.a             = amount;
            pedalGraphic.color = temp;
        }
 public static float GetFillAngle(this PedalGraphic pedalGraphic)
 {
     return(pedalGraphic.field_Public_Single_3);
 }
 //These things might change, just a bit tricky to identify the correct ones using reflection
 public static void SetFillAngle(this PedalGraphic pedalGraphic, float angle)
 {
     pedalGraphic.field_Public_Single_3 = angle;
 }