Fix phoenix fractal not working due to being different than the other ones and not using preturbation, add todo comment, fix everything using fire coloring and fire coloring being too red

This commit is contained in:
csd4ni3l
2025-12-13 16:42:22 +01:00
parent 3efb998add
commit 50d1281678
2 changed files with 6 additions and 6 deletions

View File

@@ -153,9 +153,9 @@ class IterFractalViewer(arcade.gui.UIView):
)
self.shader_program["u_real_range"] = (self.real_min, self.real_max)
self.shader_program["u_imag_range"] = (self.imag_min, self.imag_max)
if False:
self.shader_program["u_center"] = (self.center_real, self.center_imag)
self.shader_program["usepreturbation"] = False
# TODO: fix preturbation
# self.shader_program["u_center"] = (self.center_real, self.center_imag)
# self.shader_program["usepreturbation"] = False
self.shader_program.dispatch(
self.fractal_image.width,
self.fractal_image.height,