diff options
Diffstat (limited to 'scripts/map/TileDefinition.cs')
| -rw-r--r-- | scripts/map/TileDefinition.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/map/TileDefinition.cs b/scripts/map/TileDefinition.cs index 235508a..84e5cc1 100644 --- a/scripts/map/TileDefinition.cs +++ b/scripts/map/TileDefinition.cs @@ -9,6 +9,10 @@ public partial class TileDefinition : Resource [ExportCategory("Visuals")] [Export] public Texture2D Texture { get; set; } + [Export(PropertyHint.ColorNoAlpha)] + public Color LitColor { get; set; } = Colors.White; + [Export(PropertyHint.ColorNoAlpha)] + public Color DarkColor { get; set; } = Colors.White; [ExportCategory("Mechanics")] [Export] |
