Created
February 2, 2022 17:31
-
-
Save zonaryFUND/ce535901b5aa02a0af95f82d0816a850 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Color color = colorType switch { | |
UNIT_COLOR.DEFAULT => new Color(1.0f, 1.0f, 1.0f, 1.0f), | |
UNIT_COLOR.ACTIVE => new Color(1.0f, 1.0f, 1.0f, 1.0f), | |
UNIT_COLOR.CANNOT_SELECT => new Color(1.0f, 1.0f, 1.0f, 1.0f), | |
UNIT_COLOR.EFFECTIVE => new Color(1.0f, 1.0f, 1.0f, 1.0f), | |
_ => throw new InvalidOperationException() | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment