fixed exit function with q, added evolution trace to options fixed inverse

This commit is contained in:
2024-06-03 18:38:18 +02:00
parent 03e1101248
commit 443b5a2bcf
5 changed files with 35 additions and 6 deletions

View File

@@ -267,3 +267,7 @@ func (config *Config) ToggleGridlines() {
config.ShowGrid = !config.ShowGrid
config.RestartCache = true
}
func (config *Config) ToggleEvolution() {
config.ShowEvolution = !config.ShowEvolution
}