This commit is contained in:
Boki 2026-02-13 14:25:26 -05:00
parent a972055056
commit d2dab86544

View file

@ -58,13 +58,13 @@ public class MinimapConfig
public int MinimapCenterX { get; set; } = 1280;
public int MinimapCenterY { get; set; } = 700;
// Capture region: 300x300 centered at minimap center
// Capture region centered at minimap center
public Region CaptureRegion => new(
MinimapCenterX - CaptureSize / 2,
MinimapCenterY - CaptureSize / 2,
CaptureSize, CaptureSize);
public int CaptureSize { get; set; } = 300;
public int CaptureSize { get; set; } = 400;
// HSV range for player marker (orange X)
public Scalar PlayerLoHSV { get; set; } = new(5, 80, 80);
@ -82,7 +82,7 @@ public class MinimapConfig
public int WallMinArea { get; set; } = 30;
// Explored radius: pixels around player position to mark as explored on world map
public int ExploredRadius { get; set; } = 100;
public int ExploredRadius { get; set; } = 120;
// Temporal smoothing: majority vote over ring buffer (walls only)
public int TemporalFrameCount { get; set; } = 5;