You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There aren't a lot of direct uses for these functions when hand-writing assembly, but it would let the VS Code plugin provide a color picker so it would be a neat thing to add.
RGB(r, g, b) maps RGB colors to their closest equivalent in the GBC's color space.
HSV(h, s, v) maps HSV colors to their closest equivalent in the GBC's color space.
HSL(h, s, l) maps HSL colors to their closest equivalent in the GBC's color space.
COLORMAP type keyword determines the mapping algorithm used from that line onwards; initial options would include raw, BGB-like, and SameBoy-like presets.
The text was updated successfully, but these errors were encountered:
There aren't a lot of direct uses for these functions when hand-writing assembly, but it would let the VS Code plugin provide a color picker so it would be a neat thing to add.
RGB(r, g, b)
maps RGB colors to their closest equivalent in the GBC's color space.HSV(h, s, v)
maps HSV colors to their closest equivalent in the GBC's color space.HSL(h, s, l)
maps HSL colors to their closest equivalent in the GBC's color space.COLORMAP type
keyword determines the mapping algorithm used from that line onwards; initial options would include raw, BGB-like, and SameBoy-like presets.The text was updated successfully, but these errors were encountered: