PROJ FLASH COLOR

From EDukeWiki
Revision as of 06:36, 28 March 2012 by Hendricks266 (talk | contribs)
Jump to navigation Jump to search

PROJ_FLASH_COLOR is a defineprojectile property used to set the color (if any) of a Polymer light.

Syntax is:

defineprojectile <tile number> PROJ_FLASH_COLOR <number>

Where <number> is the color of the light. The number can be determined from RGB color values by adding the red value plus the green value shifted left 8 bits plus the blue value shifted left 16 bits. So, RGB of 100, 100, 100 would be 6579300 = 100 + 100<<8 + 100<<16 = 100 + 25600 + 6553600. 150, 100, 255 would be 16737380.