mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 15:20:17 +01:00
fdf1f6c9f1
Demangled methods, vectors args by ref, added comments, more accurate ray_intersect_line.
16 lines
No EOL
714 B
XML
16 lines
No EOL
714 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>
|
|
<Type Name="vector3">
|
|
<DisplayString>{{ X={X} Y={Y} Z={Z} }}</DisplayString>
|
|
</Type>
|
|
</AutoVisualizer> |