1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00

Added some content

DarthAffe 2015-11-28 19:30:08 +01:00
parent 4848723d3e
commit fe79d1828f

@ -1 +1,14 @@
TODO
In CUE.NET a brush is used to apply colors to a _KeyGroup_.
Usually the calculation of the color for a specific key is based on a [gradient](https://github.com/DarthAffe/CUE.NET/wiki/Understanding-CUE.NET-gradients) but there is no need to for this.
Typically a brush consists of some color information and a shape or something similar that defines how the brush colors keys.
> The whole software-design of CUE.NET is built around brushes so you should use them for every coloring you do.
CUE.NET provides by the default four gradients:
* [Solid-Color-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Solid-Color-Brush)
* [Linear-Gradient-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Linear-Gradient-Brush)
* [Radial-Gradient-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Radial-Gradient-Brush)
* [Random-Color-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Random-Color-Brush)
Of course you can always implement [your own brush](https://github.com/DarthAffe/CUE.NET/wiki/Implementing-an-own-brush).