[Closed] growing branches script
Im writing a growing branch script with max7 particle system, and, here is the script but this is not the final version I already have, it needs some changes.
this script is designed for normal particle sys(not partilce flow)
–starts here——————————————–
count = particleCount $ – this is a pArray
splineArray = #()
for i = 1 to count do
(
ss = splineShape()
append splineArray ss
addNewSpline ss
for t = 0 to 100 do
(
at time t
(
pos = particlePos $ i
addKnot ss 1 #smooth #curve pos
)
)
updateShape ss
ss
)
hgt = 0.0
rad = 3.5
numSides = 6
amountVal = 1.5
curveVal = -2
for i = 1 to splineArray.count do
(
pos = getKnotPoint splineArray[i] 1 1
c = cone pos:pos radius1:rad height:hgt sides:numSides
addModifier c ( spacePathDeform path:splineArray[i] )
addModifier c ( taper amount:amountVal cureve: curveVal )
c.heightsegs.controller = float_script script:“200”
animate on
(
at time 0 c.height = 0
at time 100 c.height = curveLength splineArray[i]
)
)
–ends here
i didnt check the existance of the particles, do it if its not working and you are receiving error in ur loop. I used PArray with no errors, here is the settings:
use rate:true , 10
start:0 stop:0
I also linked some spacewraps.
my 1st Q is:
whenever i add pathdeform i have to manually bring the cones to their place (no command for move to path)
my 2nd Q is:
is there a better way instead of using cones?( max length segs is 200!!!)
can anyone help me please? if its not clear or difficult to read tell me and i will post a better one.
by the way, if you have any ideas about this, post it here!
I can also post max6 file. seems sth is wrong about my thread? tell me if its true please.
Nothing yet?
Hi !
I had a look at your script,
Seams the pivot point of the cones are offset !
so the solution is easy:
just add the position expression after the creation and modification of the cones
(before animate on)
centerpivot c
c.pos=pos
sory for delay,
ThanX Zbuffer, great! i used this before the animate and…
move c -c.pos
OK, seems im ready to write the PF version, with more features.
i keep posting until it finishes.