From e17510951f1136f4afeb2afbf76c47df151b299b Mon Sep 17 00:00:00 2001 From: Matheus Date: Thu, 28 Aug 2025 17:21:38 -0300 Subject: Mapa iluminado --- scripts/map/Tile.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts/map/Tile.cs') diff --git a/scripts/map/Tile.cs b/scripts/map/Tile.cs index 67b9be5..39f7486 100644 --- a/scripts/map/Tile.cs +++ b/scripts/map/Tile.cs @@ -44,9 +44,10 @@ public partial class Tile : Sprite2D /// Elementos neste tile estão dentro do campo de visão do jogador. /// public bool IsInView { - get => this.isInView; + get => isInView; set { - this.isInView = value; + isInView = value; + Modulate = isInView ? definition.LitColor : definition.DarkColor; if (IsInView && !IsExplored) { IsExplored = true; } @@ -72,6 +73,7 @@ public partial class Tile : Sprite2D /// Definição do tile. public void SetDefinition(TileDefinition definition) { this.definition = definition; + Modulate = definition.DarkColor; Texture = definition.Texture; IsWalkable = definition.IsWalkable; IsTransparent = definition.IsTransparent; -- cgit v1.2.3