Copy Random Objects to Points

  Рет қаралды 33,785

Houdini 123

Houdini 123

Күн бұрын

Check out this new and better version of Copying random objects to points tutorial
• Copy Random Objects to...
0:00 - Intro
0:11 - Copy random object
3:01 - Auto fill in number of inputs
In this tutorial I will show you how you can copy random objects to your points.
Scripts:
Simple
fit01(rand(detail("../foreach_begin1_metadata1", iteration, 0)),0,2)
Automatic number of imputs (fixed)
fit01(rand(detail("../foreach_begin1_metadata1", iteration, 0)),0,(opninputs(".")-1))
Become a patreon and support the channel
/ houdini123
Instagram:
/ houdini123_tutorials

Пікірлер: 35
@ashkanny
@ashkanny 8 ай бұрын
Thank you this worked wonderfully specially on older Houdini's with outdated copy to point nodes
@FF-FAN9999
@FF-FAN9999 4 жыл бұрын
beautiful tutorial. simple and on point. love it. please make more of these
@DarionDAnjou
@DarionDAnjou 3 жыл бұрын
i second that motion. many more simply direct highly functional houdini tutorials.
@radiocitoyen
@radiocitoyen 4 жыл бұрын
Good tutorial, thanks for sharing !
@RandomAnimationDirector
@RandomAnimationDirector 5 жыл бұрын
great one! many thanks!
@felipe_ai
@felipe_ai 5 жыл бұрын
love this videos!!
@penelo9114
@penelo9114 5 жыл бұрын
If i'd watched this video sooner I would have saved 3h looking for info. Thanks dude, at last :) Might have took an other 2 hrs to find out >.< !!
@Houdini123
@Houdini123 5 жыл бұрын
Happy to help :)!
@mahmoudrashad7727
@mahmoudrashad7727 2 жыл бұрын
Amazing thank you
@aarrsseennyy
@aarrsseennyy 5 жыл бұрын
Nice but useful when huge amount of pieces are persistent. I use blast and connectivity nodes with almost same code
@sweet_c0le114
@sweet_c0le114 4 жыл бұрын
fire
@SavedByScience
@SavedByScience 3 жыл бұрын
Does this work with Houdini 18? (using Indie 18.0.416) When I adding the expression (you start with at the 2:15 mark) to the Switch node's Select Input field, it seems to break things for me: detail("../foreach_begin1_metadata1/", iteration, 0) Haven't touched Houdini for several months, so entirely possible I'm missing something simple. Was wondering if the Copy Stamp node had been modified or deprecated leading to problem. Thanks.
@Houdini123
@Houdini123 3 жыл бұрын
Hi Robert. Please check out this new tutorial I made. kzfaq.info/get/bejne/iZyIaJxku6feqYU.html&ab_channel=Houdini123 This is a far better system than the one you can see in this video.
@SavedByScience
@SavedByScience 3 жыл бұрын
@@Houdini123 Thanks so much! Checking that out now.
@user-np5es9hc8p
@user-np5es9hc8p 4 жыл бұрын
If we are using custom geometry, how to do we create a detail attribute for each object? thanks
@Houdini123
@Houdini123 4 жыл бұрын
Hi Ashton, there can be only one detail attribute in a stream. And in this case we are copying random objects to become one big object. So we can not have a detail attribute for each object. However. You can create an attribute on points or primitives on each object before copying and then use those. Or maybe you can delete everything else except the one object and then use attribute promote to create a detail attribute from your point or primitive attribute.
@AvisAnimationZ
@AvisAnimationZ 3 жыл бұрын
how to do this with instances? i can't set up this because i linked the objects to scatter in the node and the points are one lv under the instance node :/
@Houdini123
@Houdini123 3 жыл бұрын
This video is kind of old and kind of stupid :) Check out the new version - kzfaq.info/get/bejne/iZyIaJxku6feqYU.html As you will see in the the video. New randomization method. Much better. I would probably skip the switch and in the attribute randomize just used type "string" and attribute name is "instance" and copy on your points paths to objects you want to instanciate. Also maybe if you can use packed objects you can use what I did in the video. Packed objects and instances are kind of same. And have you seen my tutorial on instanes ? Might help too. kzfaq.info/get/bejne/kMeeeMmItpiyooU.html
@AvisAnimationZ
@AvisAnimationZ 3 жыл бұрын
@@Houdini123 ahh greate thx a lot! :)
@jamescullenseniorcggeneral8898
@jamescullenseniorcggeneral8898 3 жыл бұрын
Ah yes this will be perfect for scattering foliage I have onto some soil :)
@Houdini123
@Houdini123 3 жыл бұрын
I beg you not to. Check out this tutorial I made. A much better system - kzfaq.info/get/bejne/iZyIaJxku6feqYU.html&ab_channel=Houdini123
@jamescullenseniorcggeneral8898
@jamescullenseniorcggeneral8898 3 жыл бұрын
@@Houdini123 lol, too late already comped and rendered, will come out in a month ;)
@Houdini123
@Houdini123 3 жыл бұрын
@@jamescullenseniorcggeneral8898 Haha ok. Maybe next time :)
@Tiazzful
@Tiazzful 4 жыл бұрын
Very useful! Only thing iI can't get: why is better to fit from -1 to opninputs? why -1 and not 0? As you mentioned, with -1 the distribution is better Thanks in advance!
@Houdini123
@Houdini123 4 жыл бұрын
Hi Tiazz. It's a programming thing. Usually in programming you start counting from 0. Now what opninputs(".") does it counts how many inputs are in the switch. But it gives you a human answer - like three inputs = 3 (not 2 if you would start to count from 0). But if you look at switch and you set it to 0 it takes the first input. If you set it to 1 it takes the second input. So it is to counterbalance this. Looking back at this video it isn't a very effective method. I will make a new tutorial with a better more effective approach.
@Tiazzful
@Tiazzful 4 жыл бұрын
Houdini 123 great now is clear! Thanks my friend!
@Houdini123
@Houdini123 4 жыл бұрын
@@Tiazzful No problem! Happy to help
@jaimear1809
@jaimear1809 4 жыл бұрын
If I want to copy object by color? what I need? where I have to put the expression?
@Houdini123
@Houdini123 4 жыл бұрын
Hi Andres. Can you tell me more specifically what you are trying to achieve? There are a lot of ways you can do that.
@dan323609
@dan323609 4 жыл бұрын
Can i somehow connect switch to SpraiPaint node?
@Houdini123
@Houdini123 4 жыл бұрын
Connecting switch after spray paint is ok. Connecting SpraiPaint after switch can be tricky if you have different geometry in different locations.
@dan323609
@dan323609 4 жыл бұрын
@@Houdini123 Thank you
@andreizelenco4164
@andreizelenco4164 4 жыл бұрын
I wonder if it is possible to achieve something similar in substance designer via fx map or pixel processor :)
@Houdini123
@Houdini123 4 жыл бұрын
Hi Andrei. Unfortunately I don't have much experience with SD so can't help you with this :/ But you can always bake maps in houdini.
@pavinivfx
@pavinivfx Жыл бұрын
Idiot question: How do I see the parameters next to the scene view button?
Copy Random Objects to Points 2
6:53
Houdini 123
Рет қаралды 11 М.
МАМА И STANDOFF 2 😳 !FAKE GUN! #shorts
00:34
INNA SERG
Рет қаралды 3,9 МЛН
We Got Expelled From Scholl After This...
00:10
Jojo Sim
Рет қаралды 74 МЛН
Children deceived dad #comedy
00:19
yuzvikii_family
Рет қаралды 6 МЛН
Simple Rope Tool || Houdini Tutorial
5:45
Simon Houdini
Рет қаралды 35 М.
Houdini Basic- Random Scale and Rotation
11:16
timj
Рет қаралды 32 М.
Copy Random objects to points in Houdini 19
5:29
Werner Ziemerink
Рет қаралды 17 М.
Copy to Points with Variants | Houdini 19.5
3:57
Inside The Mind
Рет қаралды 16 М.
How to rotate instances randomly on a surface with Houdini
11:41
Dylan Neill
Рет қаралды 16 М.
Copy to points randomization weight tutorial in Houdini
5:03
Viktors Anfimovs
Рет қаралды 3,3 М.
Blender Tutorial - Creating an Exploding Missiles Simulation
21:23
Blender Made Easy
Рет қаралды 401 М.
5 Topology Tips That Will  Get You HIRED
34:02
JL Mussi
Рет қаралды 987 М.
Tip 03: Random Selection with Vex in Houdini - Houdini Tutorial
2:36
МАМА И STANDOFF 2 😳 !FAKE GUN! #shorts
00:34
INNA SERG
Рет қаралды 3,9 МЛН