mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
5fe89efc7c
Visual mode: added support for "Transfer Floor Brightness" (210) effect. Visual mode: added support for "Transfer Ceiling Brightness" (211) effect. Visual mode: changed the way thing brightness is calculated. Should be closer to GZDoom now. Sector Edit Form: you can now enter "++" or "--" into "Height Offset" input to raise or lower sectors by their height. Cosmetic fix in ZDoom_linedefs.cfg.
20 lines
419 B
C#
20 lines
419 B
C#
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
{
|
|
internal abstract class SectorEffect
|
|
{
|
|
protected readonly SectorData data;
|
|
|
|
// Constructor
|
|
protected SectorEffect(SectorData data)
|
|
{
|
|
this.data = data;
|
|
}
|
|
|
|
// This makes sure we are updated with the source linedef information
|
|
public abstract void Update();
|
|
}
|
|
}
|