| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // WARNING - AUTOGENERATED - DO NOT EDIT
- //
- // Generated using `sharpie urho`
- //
- // LightPSVariation.cs
- //
- // Copyright 2015 Xamarin Inc. All rights reserved.
- using System;
- using System.Runtime.InteropServices;
- using System.Collections.Generic;
- using Urho.Urho2D;
- using Urho.Gui;
- using Urho.Resources;
- using Urho.IO;
- using Urho.Navigation;
- using Urho.Network;
- namespace Urho
- {
- /// <summary>
- /// Light pixel shader variations.
- /// </summary>
- public enum LightPSVariation
- {
- None = 0,
- Spot,
- Point,
- Pointmask,
- Spec,
- Spotspec,
- Pointspec,
- Pointmaskspec,
- Shadow,
- Spotshadow,
- Pointshadow,
- Pointmaskshadow,
- Shadowspec,
- Spotshadowspec,
- Pointshadowspec,
- Pointmaskshadowspec,
- MaxLightPsVariations
- }
- }
|