so an artist can control what spawns more often and less
my idea is to take the curve, integrate it (or via numpy .cumsum())
and then index that value.
but apparantly this is not so easy in houdini,
some pointers anyone?
edit:
weird:
when storing a ramp as a variable the ramp cannot be adressed:
this works:
hou.parm('/obj/lot1/distribution2').eval().lookup(0.7)
this does not:
dist = hou.parm('/obj/lot1/distribution2').eval()
dist.lookup(0.3)
which makes it very inconveniant to do things like integrate etc.
very nasty
