diff options
| author | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-28 17:21:38 -0300 |
|---|---|---|
| committer | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-28 17:21:38 -0300 |
| commit | e17510951f1136f4afeb2afbf76c47df151b299b (patch) | |
| tree | 411f03c6e577380d4b84295c1796ce1aabe46813 /scripts/map/TileDefinition.cs | |
| parent | 358943907bc9e37d26618ee03adf1ffd97635335 (diff) | |
Mapa iluminado
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] |
