liked the video and also first also do you stream on twitch so I can follow you their too
@FencerDevLog Жыл бұрын
Thanks! No, not yet. But I plan to create a Twitch account as well.
@youranonymousyoutuber4051 Жыл бұрын
@@FencerDevLog IDK why view are less but this stuff is immensely helpful please continue the good work
@FencerDevLog Жыл бұрын
@@youranonymousyoutuber4051 I'd be happy for any help. 😎 Like promoting the channel, sharing the videos, etc.
@cupak2434 Жыл бұрын
Thanks for this great tutorial 👍 I'm a fan of Godot and fractals, but I'm quite weak in shader language. I hope there will be more tutorials 🙏, e.g. how to add different colors contrast etc, Here I slightly modified the *z value* to obtain a double mandelbrot 😉maybe it will be useful to someone. z = vec2( (z.x * z.x * z.x) - 3.0 * z.x * (z.y * z.y), 3.0 * (z.x * z.x) * z.y - ( z.y * z.y * z.y) ) + c;