Beispiel #1
0
 public void OnInjectionFinished()
 {
     if (micProfile != null)
     {
         imageHueHelper.SetHueByColor(micProfile.Color);
     }
 }
Beispiel #2
0
    public void SetColorOfMicProfile(MicProfile micProfile)
    {
        if (micProfile != null)
        {
            imageHueHelper.SetHueByColor(micProfile.Color);
        }

        // Make freestyle and rap notes transparent
        switch (Note.Type)
        {
        case ENoteType.Freestyle:
        case ENoteType.Rap:
        case ENoteType.RapGolden:
            image.SetAlpha(0.3f);
            break;
        }
    }
Beispiel #3
0
 public void SetColor(Color color)
 {
     imageHueHelper.SetHueByColor(color);
 }