document color option for RatingComponent

This commit is contained in:
John Rassa 2018-05-02 19:09:32 -04:00 committed by GitHub
parent 7f1dca23c5
commit c80bb7ae8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -719,6 +719,8 @@ EmulationStation borrows the concept of "nine patches" from Android (or "9-Slice
- Path to the "filled star" image. Image must be square (width equals height). - Path to the "filled star" image. Image must be square (width equals height).
* `unfilledPath` - type: PATH. * `unfilledPath` - type: PATH.
- Path to the "unfilled star" image. Image must be square (width equals height). - Path to the "unfilled star" image. Image must be square (width equals height).
* `color` - type: COLOR.
- Multiply each pixel's color by this color. For example, an all-white image with `<color>FF0000</color>` would become completely red. You can also control the transparency of an image with `<color>FFFFFFAA</color>` - keeping all the pixels their normal color and only affecting the alpha channel.
* `zIndex` - type: FLOAT. * `zIndex` - type: FLOAT.
- z-index value for component. Components will be rendered in order of z-index value from low to high. - z-index value for component. Components will be rendered in order of z-index value from low to high.