mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
8ab50ea7b7
Fixed bad clamping in frame time tool.
13 lines
625 B
XML
13 lines
625 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
<Type Name="ColorRgba">
|
|
<DisplayString>{{ Color:{Color} }}</DisplayString>
|
|
<Expand>
|
|
<Item Name="[Alpha]" ExcludeView="simple">Color>>alphaOffset & 255</Item>
|
|
<Item Name="[Red]" ExcludeView="simple">Color>>redOffset & 255</Item>
|
|
<Item Name="[Green]" ExcludeView="simple">Color>>greenOffset & 255</Item>
|
|
<Item Name="[Blue]" ExcludeView="simple">Color>>blueOffset & 255</Item>
|
|
<Item Name="[Color]" ExcludeView="simple">Color</Item>
|
|
</Expand>
|
|
</Type>
|
|
</AutoVisualizer> |