CLOSES #779 , CLOSES #743 + new font

This commit is contained in:
bryanthaboi
2026-08-04 06:41:34 -04:00
parent fe139ca7f4
commit 3a6557ffe2
30 changed files with 1214 additions and 79 deletions
+3 -1
View File
@@ -230,7 +230,9 @@ function flexlove.init(config)
-- Initialize Performance if available
if Performance then
flexlove._Performance = Performance.init({
enabled = config.performanceMonitoring or true,
-- ~= false (not `or true`): `performanceMonitoring = false` must
-- actually disable the per-frame timers + memory sampling.
enabled = config.performanceMonitoring ~= false,
hudEnabled = false, -- Start with HUD disabled
hudToggleKey = config.performanceHudKey or "f3",
hudPosition = config.performanceHudPosition or { x = 10, y = 10 },