mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 12:51:30 +00:00
15b2adfe30
Fixed, Texture Browser Form: well, I broke "Tab" key functionality again (in previous commit)... Maintenance: changed curly braces style to match DB2 one (hopefully not breaking anything in the process...). Maintenance: changed private method names casing to match DB2 one.
30 lines
639 B
C#
30 lines
639 B
C#
using SlimDX;
|
|
|
|
namespace CodeImp.DoomBuilder.GZBuilder.Data
|
|
{
|
|
public sealed class MapInfo
|
|
{
|
|
public string Sky1;
|
|
public float Sky1ScrollSpeed;
|
|
public string Sky2;
|
|
public float Sky2ScrollSpeed;
|
|
public bool DoubleSky;
|
|
public bool HasFadeColor;
|
|
public Color4 FadeColor;
|
|
public bool HasOutsideFogColor;
|
|
public Color4 OutsideFogColor;
|
|
public int FogDensity;
|
|
public int OutsideFogDensity;
|
|
|
|
public bool EvenLighting;
|
|
public bool SmoothLighting;
|
|
public int VertWallShade;
|
|
public int HorizWallShade;
|
|
|
|
public MapInfo()
|
|
{
|
|
VertWallShade = 16;
|
|
HorizWallShade = -16;
|
|
}
|
|
}
|
|
}
|