Color Parsing

Import colors directly from spreadsheet cells into Unity’s UnityEngine.Color fields.


Formats Supported

DataLoom supports multiple formats for color cell entries:

1. Hexadecimal Strings

Input colors as hex codes. The leading hash (#) is optional.

  • #FF0000 (Red)
  • #00FF00FF (Green with full Alpha)
  • FFFF00 (Yellow)

2. RGBA Comma-Separated Values (0 to 255)

Input values as standard 0-255 channels.

  • 255, 0, 0 (Red)
  • 0, 255, 0, 128 (Semi-transparent Green)

Default Fallback

If the parser fails to identify the format of a color cell, it falls back to solid white (#FFFFFF) and appends a warning to the import log to prevent transparent or invisible assets.


This site uses Just the Docs, a documentation theme for Jekyll.