Тёмный

Blender Tutorial: EASY Mandelbulb In Cycles! ...YOu WONT bElIeVe hoW eaSy iT is 

CloudMixer
Подписаться 393
Просмотров 37 тыс.
50% 1

Опубликовано:

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 71   
@ImGlobalJ
@ImGlobalJ 4 года назад
I figured out how to get a multicolored mandelbulb. Don't throwing a RGB straight into the color of both the Volume Scatter and Volume Absorption nodes. Instead come out of the Intensity of the DynamicMathsExpressionGroup with a ColorRamp. Then plug the color of the ColorRamp into the color of the Volume Scatter. Mess with the ColorRamp until you get the colors you like. Hope this helps someone. :)
@crystellik
@crystellik 2 года назад
Thank you
@cobee2634
@cobee2634 4 года назад
interesting occult research
@seymaple
@seymaple 3 года назад
lol "it already has mandelbulb in it so you don't have to do shit" XD
@visualdrip.official
@visualdrip.official 3 года назад
LMAO best
@digitalchemist3867
@digitalchemist3867 3 года назад
gr8 tutorial. your voice/intro reminded me of the interdimensional cable guy on rick & morty who narrates the commercials lol.
@PeterfoxUwU
@PeterfoxUwU 2 года назад
The music makes it feel like a really sad IRL Story
@ViprazDesigns
@ViprazDesigns 4 года назад
Dude. Dude. Wow. I thought you had 20k+ subs by the quality of the content you're making!
@INeedsMoneys
@INeedsMoneys 2 года назад
Big man do big tings. I like it
@sourdonkeyjuice
@sourdonkeyjuice 3 года назад
Awesome! What step size and sample rate did you use for the final pic? Thanks!
@sourdonkeyjuice
@sourdonkeyjuice 3 года назад
Lmao you hearted the comment but didn't answer?? 😭 I wanna knooow
@SonchoAustin
@SonchoAustin 3 года назад
Bruh. "It already has mandlebulb in it, so you don't really have to do SHIT!" Got my like and sub. 🔥
@kelliehebert2677
@kelliehebert2677 3 года назад
Holy render time! Left it overnight and it rendered 33 frames. Very cool though, once I see the result, I will animate and send to a render farm.
@mahirfr
@mahirfr 4 года назад
Your channel and your vid is totally underrated.. Subscribed want more of these video. Keep it up..
@omarkhalifa2490
@omarkhalifa2490 2 года назад
I did one that had a butterfly texture on it looks out of this world
@aidanpatrickhood5562
@aidanpatrickhood5562 4 года назад
This looks great, thanks! Is there a way to animate it with this add-on?
@sourdonkeyjuice
@sourdonkeyjuice 3 года назад
Animate the Mandelbulb by keyframing the "N" number in the MathsExpression Node. I keyframed from 1 to 8.
@verxvikx
@verxvikx 2 года назад
Addon doesn't work in 3.1 version...
@БергиеВалери
@БергиеВалери 4 года назад
hi, what keys did you press in 1:15 min?
@stesch-f
@stesch-f 4 года назад
Ctrl-T with Node Wrangler installed.
@anoopal2241
@anoopal2241 4 года назад
Thanks!
@matdl5472
@matdl5472 2 года назад
I installed the add-on, but in the math expressions preset it doesn't show mandelbulb as an option
@unailafuente961
@unailafuente961 2 года назад
hey! do you know if this is only aviable for windows or also for Mac too cause when I download it there's no zip I can install in blender !!! :( thank u
@richardsedman8531
@richardsedman8531 2 года назад
It should work the same for Mac, Windows and Linux.
@filmarto12
@filmarto12 2 года назад
good tutorial, thx, and what is that background music?
@sanjith7848
@sanjith7848 3 года назад
Bro it's like rick teaching me tutorials 😂❤
@MrRobbyvent
@MrRobbyvent 2 года назад
thinking of the speed, I'm wondering, are the nodes compiled or interpreted?
@DacArtpsy
@DacArtpsy 3 года назад
this plugin is awesome, is there a way to convert into mesh
@manuelgarciabernabeu2868
@manuelgarciabernabeu2868 3 года назад
I have exactly copied the parameters and the image looks blurry, just dots.
@sakurasepuku4374
@sakurasepuku4374 2 года назад
It looks so amazing, too bad my computer can't really render this, looks more like a greyish cloud inside a cube. But i love watching others making them!
@logical_mania
@logical_mania 9 месяцев назад
Any idea how to get this to work in 4 0? There was someone who edited the code and rerealeased zip folder for mixamo, wondering if same has happened for this as it was just hosted on a goigke drive
@richardsedman8531
@richardsedman8531 4 года назад
Hey CloudMixer. You could add some animation by tweaking the expression a little... When adding the 'Preset' mandelbulb, enable the 'Create as Text block' checkbox, then when it's created, go to a Text Editor window and change the expression to this : # Mandelbulb : Generate a Mandelbulb (3d-mandelbrot) #Define the group for one 'iteration' of the Mandelbulb calculation group:start(mandelbulbiteration, N, iBlown, Limit, iOffset[], iVector[],ZAngleOffset) #Split the input vector into x,y,z _x = iVector[x] _y = iVector[y] _z = iVector[z] #Calculate the coordinates _r = (_x*_x + _y*_y + _z*_z)**0.5 _theta = atan2((_x*_x+_y*_y)**0.5,_z)+ZAngleOffset _phi = atan2(_y,_x)+ZAngleOffset _rn = _r ** N _newx = _rn * sin(_theta*N) * cos(_phi*N) _newy = _rn * sin(_theta*N) * sin(_phi*N) _newz = _rn * cos(_theta*N) #New distance from centre _newR = (_newx*_newx + _newy*_newy + _newz*_newz)**0.5 #Determine whether our new point lies outside the sphere oBlown = or(iBlown, _newR> Limit) oVector[] = vadd(combine(_newx, _newy, _newz), iOffset[]) Intensity = _r - _newR #End the group - the name should match the 'start' group:end(mandelbulbiteration) #----------------------------------------------------------------------------------------- #Add a group node named 'iteration1', setting the inputs to the group input values group:add(mandelbulbiteration,iteration1,N{8},0,Limit{2},Input[], Input[]) #Add second group node named iteration2 and linked to the first group:add(mandelbulbiteration,iteration2,N,group:iteration1[oBlown],Limit,Input[], group:iteration1[oVector],ZAngleOffset) #Add some more iterations group:add(mandelbulbiteration,iteration3,N,group:iteration2[oBlown],Limit,Input[], group:iteration2[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration4,N,group:iteration3[oBlown],Limit,Input[], group:iteration3[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration5,N,group:iteration4[oBlown],Limit,Input[], group:iteration4[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration6,N,group:iteration5[oBlown],Limit,Input[], group:iteration5[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration7,N,group:iteration6[oBlown],Limit,Input[], group:iteration6[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration8,N,group:iteration7[oBlown],Limit,Input[], group:iteration7[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration9,N,group:iteration8[oBlown],Limit,Input[], group:iteration8[oVector],ZAngleOffset) group:add(mandelbulbiteration,iteration10,N,group:iteration9[oBlown],Limit,Input[], group:iteration9[oVector],ZAngleOffset) #Define the outputs Inside = not(group:iteration10[oBlown]) Intensity = group:iteration10[Intensity] Then click the 'Update from Text block' button within the group. This will give you a 'ZAngleOffset' input to the node that you can animate. It's a bit crude but demostrates what can be done by tweaking the formula that generates the mandelbulb.
@CloudMixer
@CloudMixer 4 года назад
Hey! Sorry for the delay. I will check this out tonight. Thanks!
@CloudMixer
@CloudMixer 4 года назад
I did do a little bit of an animation a while back by adjusting the N(?) i think. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5T4epjQYS8I.html I will try a better one with this once i get it working
@CloudMixer
@CloudMixer 4 года назад
Ok so yeah.. that Z offset is amazing. Ill render a video at some point like how i did with the Reaction-Diffusion Simulations. Will this Z offset be included in a future release? Ive been trying to find time to sit down and build a fractalized world for a fly through. Nothing special.. and definitely not anything as pure as: www.julius-horsthuis.com/ Maybe ill wait for a GPU upgrade haha.
@richardsedman8531
@richardsedman8531 4 года назад
@@CloudMixer Yeah - going to include a Mandelbulb2 as a separate preset with additional features. So far included variable input (so can automatically connect to Object coords without needing Texture Coords node), auto density multiplier, variable Theta, Pi and R offsets (R lets you ‘pulse’ it quite nicely) and trying to come up with a better means of adding color. Will include as new preset. I’ll let you know once it’s available.
@crystellik
@crystellik 2 года назад
This is all very confusing
@pipeliner8969
@pipeliner8969 3 года назад
wow beautiful shit
@abhisheki4991
@abhisheki4991 3 года назад
Great stuff. Could you please tell me how to animate it, I need an animated mandelbulb for a project, all other tutorials include manually setting up the expressions.
@sourdonkeyjuice
@sourdonkeyjuice 3 года назад
Animate the Mandelbulb by keyframing the "N" number in the MathsExpression Node. I keyframed from 1 to 8.
@harshitsharma7771
@harshitsharma7771 3 года назад
@@sourdonkeyjuice thks
@johnnybravo4597
@johnnybravo4597 2 года назад
where do you find a multiplayer node?
@8Maik
@8Maik 2 года назад
I get a python error about width being float instead of integer when adding the node. ANybody else had the same issue?
@raphael6418
@raphael6418 2 года назад
same for me
@acidandbile6335
@acidandbile6335 Год назад
I've figured it out if you're still wondering. For me, it was because I downloaded the wrong version. This video was made 2 years ago so I had to use the most recent Beta version of Maths Expressions for it to work. Hope this helps.
@hypersonicmonkeybrains3418
@hypersonicmonkeybrains3418 3 года назад
dont work unless you have an old version of blender... which sucks because i cant even get a version that old, the oldest i can get on the blender website is 2.91
@dominikseitz
@dominikseitz 3 года назад
For me it works also in 2.91 with EEVEE. But here you can download previous versions of Blender: www.blender.org/download/previous-versions/
@DaellusKnights
@DaellusKnights 2 года назад
So... are you maybe, just possibly, perhaps suggesting... ...and maybe I'm reaching here... we should... LEARN TO USE THE MATH NODES??? 😳😳😳 🤣👍
@jchampton93
@jchampton93 2 года назад
how do you render in eevee ?
@lukayz1363
@lukayz1363 2 года назад
Wow
@visualdrip.official
@visualdrip.official 3 года назад
lmao your hilarious, followed
@ACABROCKY
@ACABROCKY 2 года назад
I just realised how slow my pc actually is
@ACABROCKY
@ACABROCKY 2 года назад
basicly when using ur setting im rendering a 2 sample 1080x1080 picture for the past 12 minutes and im only halfway done
@MysticMinds
@MysticMinds 4 года назад
is there a way to do this in eevee?
@CloudMixer
@CloudMixer 4 года назад
Kinda. You can absolutely create a Mandelbulb in Eevee... But i cant seem to get this same level of detail. Its something im still working on. Once i figure it out i will post a video!
@richardsedman8531
@richardsedman8531 4 года назад
@@CloudMixer With Eevee, the key is to set the Volumetrics render settings to narrow down the range of the volume - the 'Start' and 'End' distances in the settings. These default to 0.1m and 100m... reducing them tells Eevee to concentrate on just a narrow range - so if your volulme is 1m away from the camera and is 1m in size, set them to 0.5m and 1.5m and get a much crisper volume render. Also, reduce the Tile size, increase the Samples and don't forget Volumetric Shadows (with maximum Samples).
@richardsedman8531
@richardsedman8531 4 года назад
Here’s my original inspiration for adding the Mandelbulb preset : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-WSQFt1Nruns.html. At 18:00 to 20:00 it goes through the Eevee settings to improve the results by setting Start, End, etc. Hope it helps.
@CloudMixer
@CloudMixer 4 года назад
@@richardsedman8531 I definitely have applied those suggestions. But I kept running into a couple issues.. with my Eevee bulb tests I couldn't find a proper way to have it interact with HDRI lighting. Unless under very specific lighting thresholds it losses a lot of it's clarity. Tightening the area Eevee calculates volume does increase density and clarity. But not to the degree I personally like. Even with volumetric shadows, tile size, samples at max quality, cycles had the look I was going for.
@CloudMixer
@CloudMixer 4 года назад
@@richardsedman8531 that was an amazing video suggestion! I just subscribed
@playbyan1453
@playbyan1453 3 года назад
Lol there is no preset in 2.7 version
@3FourFour5
@3FourFour5 3 года назад
mandelboob damn i wish i could unsee anime fanart too
@donniemp3
@donniemp3 2 года назад
pop filter
@leociresi4292
@leociresi4292 4 года назад
Whaaaaaaaaaaaaaaaaaaa?
@rockabilli3058
@rockabilli3058 3 года назад
Zu viel bla bla verschwinde
@CloudMixer
@CloudMixer 3 года назад
... Nein
Далее
4D objects in Blender!
18:22
Просмотров 740 тыс.
Paint Projects
00:17
Просмотров 4,1 млн
I tricked MrBeast into giving me his channel
00:58
Просмотров 4,6 млн
How To Make Crazy Renders With Easy Geometry Nodes
14:30
Hyper Realistic Water is this EASY in 3D Graphics
10:37
Intro to Mandelbulb3D
25:40
Просмотров 26 тыс.
Everything Blender can do in one video
12:48
Просмотров 275 тыс.
Pro Animation Is EASY Now (Try This!)
11:43
Просмотров 584 тыс.
How to Render Faster In Blender Cycles
9:11
Просмотров 63 тыс.
Making a Horror Animation in Blender
13:31
Просмотров 195 тыс.
Coding Challenge 168: MandelBulb 3D Fractal
28:02
Просмотров 373 тыс.
The Key to Realistic Environments in Blender
10:41
Просмотров 291 тыс.