Тёмный
krotMonster
krotMonster
krotMonster
Подписаться
basketball
0:07
9 лет назад
the plant
0:29
9 лет назад
gray-scott reaction diffusion
0:20
9 лет назад
ground/object interaction
0:20
9 лет назад
fire
0:03
10 лет назад
ink pill
0:12
10 лет назад
ray bounce experiment
2:58
10 лет назад
cartoon liquid
0:48
10 лет назад
balloons cluster rig
3:36
10 лет назад
speed to weight (python effector)
2:39
10 лет назад
basic "coin spin" rig
5:17
10 лет назад
cinema 4d rope recipe
1:57
10 лет назад
weight map propagation
5:10
10 лет назад
python effector
2:13
11 лет назад
ocean cg
0:08
11 лет назад
recent reel
1:26
11 лет назад
99injections OIL
2:06
12 лет назад
oil01_.mov
0:09
12 лет назад
globe_.mov
0:07
12 лет назад
sphere.mov
0:06
12 лет назад
bwire.mov
0:06
12 лет назад
landscape.mov
0:33
12 лет назад
lego test
0:04
13 лет назад
sim02_01_.mov
0:10
13 лет назад
vortex_milk_.mov
0:07
13 лет назад
pearl.mov
0:05
13 лет назад
ocean test07a_.mov
0:05
13 лет назад
Комментарии
@agsenpai5973
@agsenpai5973 8 месяцев назад
Thanks bro
@SagunManandhar
@SagunManandhar Год назад
Hi. This is awesome. Can we get it working in new version of c4d in anyway ?
@yodojo3493
@yodojo3493 Год назад
Unfortunately, no longer working in 2023. I can't even find a python generator in 2023
@Taroles
@Taroles Год назад
Thank you so muuuuuuuuch!!!!!
@PunmasterSTP
@PunmasterSTP 2 года назад
That was snow cool!
@PunmasterSTP
@PunmasterSTP 2 года назад
Seems like you’re…branching out. 😎
@PunmasterSTP
@PunmasterSTP 2 года назад
That was so good it was almost…unbe-tree-vable! 😎
@PunmasterSTP
@PunmasterSTP 2 года назад
Looks amazing! On a side note, that sphere coming out of the water made me think of the movie “Sphere”…
@PunmasterSTP
@PunmasterSTP 2 года назад
Water you doing…to make such good videos? 😎
@PunmasterSTP
@PunmasterSTP 2 года назад
Test? More like “This is some of the best”…animation I’ve ever seen!
@PunmasterSTP
@PunmasterSTP 2 года назад
I’m just curious; wire you making all these animations? jk 😎 It doesn’t matter, they’re just awesome and I hope you keep making them!
@PunmasterSTP
@PunmasterSTP 2 года назад
Looks like you were…havin a ball! 😎
@PunmasterSTP
@PunmasterSTP 2 года назад
Short, but incredible!
@PunmasterSTP
@PunmasterSTP 2 года назад
Damn that was hot!
@PunmasterSTP
@PunmasterSTP 2 года назад
That was incredible. You’re really talented!
@PunmasterSTP
@PunmasterSTP 2 года назад
That looks pretty cool. Thanks for putting it up.
@PunmasterSTP
@PunmasterSTP 2 года назад
That’s basketb-alright! jk that was incredible 😀
@PunmasterSTP
@PunmasterSTP 2 года назад
That was very nice, and I also thought a bit creepy. Like something you’d see under a microscope, or in the movie The Ring. In any case, I really liked it!
@delvinlucas565
@delvinlucas565 2 года назад
Patrice Chemung put your left hand on the side of the ball put your right hand on the bottom of the ball
@joshonblaze1485
@joshonblaze1485 2 года назад
TO MAKE IT WORK REMOVE "X" FROM XRANGE IN NUMBER 25 AND 31 (PYTHON SCRIPT) CLICK CTRL + S ( SAVE)
@sergio_motion
@sergio_motion 2 года назад
Thank you very much!
@amirnoorani5017
@amirnoorani5017 2 года назад
Please continue your channel
@vovamoroz1791
@vovamoroz1791 2 года назад
Thank you for this tutorial! You are my life saver)))
@khoinguyen5063
@khoinguyen5063 3 года назад
I've found you can use this on a spline if you guys want to really have control over the path of the lightning. Neat stuff
@Bluecow7o
@Bluecow7o 3 года назад
I can’t tell if this is an animation or irl, which is it?
@Vekova404
@Vekova404 3 года назад
merci
@TheFernandobenetti
@TheFernandobenetti 3 года назад
Great! Simple and efective!!!
@SimonTerrey
@SimonTerrey 3 года назад
Absolute legend. I've been looking everywhere about how to achieve this, (inc Trapcode 3D stroke...) Thank you!
@FrankTank7777
@FrankTank7777 3 года назад
Just a quick note if someone struggled getting this working, it looks like this was written in Python 2 and later versions of C4d uses Python 3. Simply replace xrange with range and it seems to work. There are two places in the python script
@nelsondesousa3952
@nelsondesousa3952 3 года назад
Thanks! Updated code here: import c4d from c4d import utils import random import math def main(): source = op.GetDown() source_spline = op[c4d.ID_USERDATA,8].GetRealSpline().GetClone() if source_spline: random.seed(op[c4d.ID_USERDATA,4]) initial_points = source_spline.GetAllPoints() if len(initial_points)>1: duplicates = [initial_points] * (op[c4d.ID_USERDATA,5]+1) bolts = [dict(points = bolt_points, iteration = 0) for bolt_points in duplicates] max_offset = op[c4d.ID_USERDATA,3] for i in range(0, op[c4d.ID_USERDATA,6]): new_branches = [] for bolt_data in bolts: bolt = bolt_data['points'] new_bolt = [bolt[0]] for pid in range(0, len(bolt)-1): sp = bolt[pid] ep = bolt[pid+1] np = (sp+ep)*.5 line_dir = (ep-sp).GetNormalized() up = c4d.Vector(random.uniform(-1, 1), random.uniform(-1, 1), random.uniform(-1, 1)).GetNormalized() offset_dist = random.uniform(-1, 1) * max_offset offset = line_dir.Cross(up).GetNormalized() * offset_dist np += offset new_bolt.extend([np, ep]) if random.random()>op[c4d.ID_USERDATA,7]: new_branches.append([np, np + np - sp + offset]) bolt_data['points'] = new_bolt new_branches_data = [dict(points = bolt_points, iteration = i) for bolt_points in new_branches] bolts.extend(new_branches_data) max_offset *= .5 null = c4d.BaseObject(c4d.Onull) for bolt_data in bolts: bolt = bolt_data['points'] iteration = bolt_data['iteration'] spline = c4d.SplineObject(len(bolt), c4d.SPLINETYPE_LINEAR) spline.SetAllPoints(bolt) sweep = c4d.BaseObject(c4d.Osweep) spline.InsertUnder(sweep) crossection = source.GetClone() crossection.SetRelScale(c4d.Vector(1.0/math.pow((iteration+1),(1-op[c4d.ID_USERDATA,1])*3))) crossection.InsertUnder(sweep) sweep.InsertUnder(null) sweep.SetPhong(True, True, 80) return null
@snackfleet3997
@snackfleet3997 3 года назад
line 25 & 31
@zuunderr3780
@zuunderr3780 3 года назад
@@nelsondesousa3952 where do i have to put this text? kinda noob in this :)
@matteoforghieri
@matteoforghieri 3 года назад
@@nelsondesousa3952 you deserve a biscuit sir
@canoksas2979
@canoksas2979 3 года назад
@@zuunderr3780 did you found out where to put this? :)
@FrankTank7777
@FrankTank7777 3 года назад
Cheers mate, great work. I tried to do this with simply animating a spline, but your script is JUST SO MUCH BETTER!
@FrankTank7777
@FrankTank7777 3 года назад
By the way, thanks for keeping the file available.
@Inkkid-ee3os
@Inkkid-ee3os 3 года назад
Cool....... Unfortunately, it did work on the R23 version.
@vh-t7684
@vh-t7684 3 года назад
It's a Python version issue. R23 only run on Python 3.7.7 and not on Python 2.7.X code. Just delete in line 25 and 31 the x from xrange to range. That's it. (Python Generator Object (bolt) > Object > Code).
@Inkkid-ee3os
@Inkkid-ee3os 3 года назад
@@vh-t7684 I've got it man! Thanks, you're an angel!
@tikhonmakhno6514
@tikhonmakhno6514 2 года назад
@@vh-t7684 Thanks alot!
@wtfsaml
@wtfsaml 3 года назад
Why am I here?
@daxonbullard2732
@daxonbullard2732 3 года назад
nba live 22 next gen net
@CodyGarrow
@CodyGarrow 3 года назад
Such a smart way to do that. Thanks!
@saliclothing
@saliclothing 3 года назад
thank you so much <3
@sammedia3d
@sammedia3d 3 года назад
thanks a lot for this
@furrista0
@furrista0 3 года назад
Toda mi vida lo estuve haciendo de la forma complicada, hasta hoy
@scrydedoria2435
@scrydedoria2435 4 года назад
Man thank you so much for this. I wonder, if there is a way to reduce the speed of the lightning animation ? Thanks in advance. Best wishes
@1357hola
@1357hola 4 года назад
did you figure that out?
@scrydedoria2435
@scrydedoria2435 4 года назад
@@1357hola apparently it's not possible..... i wrote an email directly to the author of the code and himself is not sure we can do it :/
@1357hola
@1357hola 4 года назад
Scry deDoria oh ok, thanks for answering :)
@drewnix7201
@drewnix7201 3 года назад
add a mathadd node in between the time and bolt in xpresso, then change it to multiply in the attribute manager, then change value to .5 or something like that
@joy_boy2112
@joy_boy2112 3 года назад
@@drewnix7201 Thanks man , really helps me a lot
@700wattmicrowaveoven2
@700wattmicrowaveoven2 4 года назад
Clothing tag got stuck in my kegels
@mattrittman
@mattrittman 4 года назад
Hi thanks for the tutorial! Is there any way to optimize the rope after dropping it into a spline wrap? Had to crank up the subdivisions so it’s not choppy, but my viewport really seems takes a hit :(
@gusmaiawork
@gusmaiawork Год назад
did you find any solutions?
@DreamTeam-yk2ff
@DreamTeam-yk2ff 4 года назад
!!! Спасибо
@Whoistoska
@Whoistoska 4 года назад
you are beautiful
@Efadh
@Efadh 4 года назад
very nice, what i just looking for, thank you very much
@JobilleTuts
@JobilleTuts 4 года назад
straight to the point tutorial! great job!
@Lyoshavol
@Lyoshavol 4 года назад
Thank you!
@massimobaita7178
@massimobaita7178 4 года назад
Great!
@rewwhiskas4234
@rewwhiskas4234 4 года назад
Nice one! Thanks
@SupSupa10
@SupSupa10 4 года назад
Hi ! Are you owner of YouMoGraph ? ANd why do you stop working on 3D ?
@user-ny4in7sc4b
@user-ny4in7sc4b 5 лет назад
Thanks!
@rajindermohan5546
@rajindermohan5546 5 лет назад
Can you let me know how can i check the simple vectors of object.