コード例 #1
0
ファイル: LightSpot.cs プロジェクト: Powerino73/paradox
 /// <summary>
 /// Initializes a new instance of the <see cref="LightSpot"/> class.
 /// </summary>
 public LightSpot()
 {
     Range = 3.0f;
     AngleInner = 30.0f;
     AngleOuter = 35.0f;
     Shadow = new LightStandardShadowMap() { Importance = LightShadowImportance.Medium };
 }
コード例 #2
0
ファイル: LightPoint.cs プロジェクト: rock6tsai/paradox
 /// <summary>
 /// Initializes a new instance of the <see cref="LightPoint"/> class.
 /// </summary>
 public LightPoint()
 {
     Radius = 1.0f;
     Shadow = new LightStandardShadowMap {
         Importance = LightShadowImportance.Low
     };
 }
コード例 #3
0
ファイル: LightPoint.cs プロジェクト: h78hy78yhoi8j/xenko
 /// <summary>
 /// Initializes a new instance of the <see cref="LightPoint"/> class.
 /// </summary>
 public LightPoint()
 {
     Radius = 1.0f;
     Shadow = new LightStandardShadowMap
     {
         Size = LightShadowMapSize.Small
     };
 }
コード例 #4
0
ファイル: LightPoint.cs プロジェクト: sonicviz/xenko
 /// <summary>
 /// Initializes a new instance of the <see cref="LightPoint"/> class.
 /// </summary>
 public LightPoint()
 {
     Radius = 1.0f;
     Shadow = new LightStandardShadowMap
     {
         Size = LightShadowMapSize.Small
     };
 }
コード例 #5
0
ファイル: LightSpot.cs プロジェクト: dhootha/paradox
 /// <summary>
 /// Initializes a new instance of the <see cref="LightSpot"/> class.
 /// </summary>
 public LightSpot()
 {
     Range      = 3.0f;
     AngleInner = 30.0f;
     AngleOuter = 35.0f;
     Shadow     = new LightStandardShadowMap()
     {
         Importance = LightShadowImportance.Medium
     };
 }
コード例 #6
0
ファイル: LightSpot.cs プロジェクト: yyzreal/xenko
 /// <summary>
 /// Initializes a new instance of the <see cref="LightSpot"/> class.
 /// </summary>
 public LightSpot()
 {
     Range      = 3.0f;
     AngleInner = 30.0f;
     AngleOuter = 35.0f;
     Shadow     = new LightStandardShadowMap()
     {
         Size           = LightShadowMapSize.Medium,
         BiasParameters =
         {
             DepthBias = 0.001f,
         }
     };
 }
コード例 #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LightSpot"/> class.
 /// </summary>
 public LightSpot()
 {
     Range = 3.0f;
     AngleInner = 30.0f;
     AngleOuter = 35.0f;
     Shadow = new LightStandardShadowMap()
     {
         Size = LightShadowMapSize.Medium,
         BiasParameters =
         {
             DepthBias = 0.001f,
         }
     };
 }
コード例 #8
0
ファイル: LightSpot.cs プロジェクト: Ethereal77/stride
 /// <summary>
 /// Initializes a new instance of the <see cref="LightSpot"/> class.
 /// </summary>
 public LightSpot()
 {
     Range      = 3.0f;
     AngleInner = 30.0f;
     AngleOuter = 35.0f;
     UVOffset   = Vector2.Zero;
     UVScale    = Vector2.One;
     Shadow     = new LightStandardShadowMap()
     {
         Size           = LightShadowMapSize.Medium,
         BiasParameters =
         {
             DepthBias = 0.001f,
         },
     };
 }
コード例 #9
0
ファイル: LightPoint.cs プロジェクト: Powerino73/paradox
 /// <summary>
 /// Initializes a new instance of the <see cref="LightPoint"/> class.
 /// </summary>
 public LightPoint()
 {
     Radius = 1.0f;
     Shadow = new LightStandardShadowMap() { Importance = LightShadowImportance.Low };
 }