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

Updated Perform basic lighting (markdown)

DarthAffe 2017-01-08 15:35:30 +01:00
parent 3c1713502c
commit 9c7a8e83a7

@ -32,4 +32,10 @@ CueSDK.UpdateFrequency = 1f/60f;
```
> Be aware of the performance impact of high update-rates!
> Since the update rate is limited by CUE and the hardware, you'll most likely not see any improvements by using more then 40 updates per second.
> Since the update rate is limited by CUE and the hardware, you'll most likely not see any improvements by using more then 40 updates per second.
### CorsairColor
Inside of CUE.NET colors are represented as a own class called [CorsairColor](https://github.com/DarthAffe/CUE.NET/blob/master/Devices/Generic/CorsairColor.cs).
This allows colors to be reference and processed in an advanced way. To keep things simple when working with CUE.NET any _CorsairColor_ is implicit convertible to and from System.Drawing.Color.
> CorsairColors are unlike System.Draw.Colors reference-types. Keep that in mind when modifying a color that might be used multiple times!
You can copy any color by simply creating a new one and pass the old as a parameter to the constructor.