Skip to content

Instantly share code, notes, and snippets.

@jimchan3301
Created April 16, 2024 10:11
Show Gist options
  • Save jimchan3301/93c108740279b1a216ab145a6e050ac0 to your computer and use it in GitHub Desktop.
Save jimchan3301/93c108740279b1a216ab145a6e050ac0 to your computer and use it in GitHub Desktop.
Directly convert between Unity's Color32 and int.
/*
* 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