Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ShadowMapMode.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace SiliconStudio.Paradox.Effects
4 {
5  [Flags]
6  public enum ShadowMapMode
7  {
8  None = 0,
9  Caster = 1,
10  Receiver = 2,
11  All = Caster | Receiver,
12  }
13 }
Flags
Enumeration of the new Assimp's flags.