Created
April 16, 2024 10:11
-
-
Save jimchan3301/93c108740279b1a216ab145a6e050ac0 to your computer and use it in GitHub Desktop.
Directly convert between Unity's Color32 and int.
This file contains 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
/* | |
* Author: Jim Chan | |
* Created Date: 15/04/2024 | |
*/ | |
using System; | |
using UnityEngine; | |
public static class ColorConverter | |
{ | |
public static Color32 ToColor(int value) | |
{ | |
Span<byte> bytes = stackalloc byte[4]; | |
BitConverter.TryWriteBytes(bytes, value + 1); | |
return new Color32(bytes[0], bytes[1], bytes[2], bytes[3]); | |
} | |
public static int ToInt(Color32 value) | |
{ | |
ReadOnlySpan<byte> bytes = stackalloc byte[] { value.r, value.g, value.b, value.a }; | |
return BitConverter.ToInt32(bytes) - 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment