Hey! This video ended up focusing quite heavily on orientation workflows. We'll be doing more parts related to instancing workflows in the weeks to come.
@machinist10512 жыл бұрын
5:13 Well said. That's something many schools/universities miss, I think. You often need to learn how to work WITH it before learning HOW it works. Raw theory for beginners lacks a context. You don't need to know the physics of gyroscopic precession or the biology behind the human vestibular system to ride a bicycle. But when (or if) you need to learn it to push your skills further, practice will help you to understand it much faster and deeper.
@chienao9360 Жыл бұрын
haha.Thank you for your work. you said "This is super basic" had me blow my mind because it took a lot of my brain cells and time to finally understand what the code does. Please keep up great work.
@pr0fess0r2 жыл бұрын
Thanks
@NineBetween2 жыл бұрын
And thank you too!
@brunocfer2 Жыл бұрын
You are fast becoming the GO TO button of all new Houdini user, thank you!!
@sayee8492 Жыл бұрын
This video is a godsend, I have to re-look up how quaternions work every few months. Thank you so much! 🙏
@tinyredkite Жыл бұрын
Wonderful tutorial, clear and straight to the point! Thank you so much!
@pr0fess0r2 жыл бұрын
Awesome! So much useful information and so clearly presented 👍
@khalilboss28552 жыл бұрын
This looks somehow like an advanced level of the sprinkles tutorials in Houdini isn't scary series haha. But it's a great tutorial. Looking forward for the next parts
@NineBetween2 жыл бұрын
You're right! In that video, the sprinkles all used the same orientation attributes. This one is definitely an advanced version of that. Thanks for the comment as always!
@philippwelsing9108 Жыл бұрын
"This is super basic", haha. NOPE. But it is incredibly useful for those starting to use Houdini for production and their own custom projects. Actually, this IS the base line for really controlling what Houdini does, but no one would get that stuff if it was the first thing being taught. Thank you for this!
@wydjeefx9922 жыл бұрын
That was an amazingly handy houdini tip. Thanks a lot ;)
@syns3692 жыл бұрын
Best tutorial out there, thanks nine!
@travislrogers Жыл бұрын
Really great explanation of these concepts. Happy to see you're back in action with the new videos and I'm loving the new set! Excited to see more in this series, especially animated instances and Karma!
@shafiq-rehman2 жыл бұрын
EPIC TUT!! thanks
@maarten176 Жыл бұрын
Thanks!! you helped me so much with all your videos
@Davvechan3 ай бұрын
Nice and informative video!
@massimobaita71782 жыл бұрын
Thank You very much!
@NineBetween2 жыл бұрын
No problem at all 😁👌
@vynylPooh2 жыл бұрын
Thanks a lot! very useful!
@RageNitrik2 жыл бұрын
Very cool, I am going to use this knowledge to create animations, keep up the great work
@NineBetween2 жыл бұрын
Thank you
@GrafxPlug4 ай бұрын
Thank you!
@henrythejeditube2 жыл бұрын
wow, this is by far the most comprehensive and yet advanced orientation tutorial I have ever seen on Houdini, it may be the only one I will ever need, all thanks to you sir, very warm greetings from a fellow artist also based in the Republic South Africa :)🤗
@NineBetween2 жыл бұрын
Awesome, I'm glad to hear it. It was a video I wished I had when I was learning so I decided to make it. Also, if you wouldn't mind dropping me an email (under the "About" section), we are looking at holding an event in SA for Houdini Artists. I'm getting in touch with as many artists as I can in the meantime but it will only be next year sometime :)
@henrythejeditube2 жыл бұрын
@@NineBetween You are welcome sir, I will email you now. Thank you once again
@johannestiner Жыл бұрын
Fantastic video!
@NineBetween Жыл бұрын
Thank you!
@genzvfxartist2 жыл бұрын
Yeah ! Video quality 🔥
@NineBetween2 жыл бұрын
Thanks 🔥
@matteomigliorini2 жыл бұрын
thanks a lot for sharing it
@gouthamvanga51295 ай бұрын
I want to randomly rotate individual points by the multiples of 90s along the normal. Can you please help
@asierlabfx Жыл бұрын
Thanks!
@brahimnz_ Жыл бұрын
Awesome 💯
@frame_rand7 ай бұрын
Such great vid
@ProjectKhopesh Жыл бұрын
Nicely explained, thank you. How would one take those quaternions and control their rotations per point in a For Each loop? I've been trying to control all 3 axes of rotation, giving an end user control of how much randomness and rotation gets applied. I've been given to understand that these lovely little quaternions via the orient attribute ought to afford such control, but I can't seem to get them to behave.
@null_design2 ай бұрын
Why do you need to use a For Each loop? The WranglePoint node code executes for each point for your dedicated point set. It literally functions like a For Each loop, but without the need for Foreach_begin and Foreach_end blocks.
@Jorgal.2022 Жыл бұрын
Hi, I don't understand why the VEX expression in your video is v@up = (0, 0, 1) instead of v@up = (0, 1, 0), as I think it should be. Thanks
@tunatopaloglu47702 жыл бұрын
Awsome!
@NineBetween2 жыл бұрын
Thanks for watching😁
@TGSuineg2 жыл бұрын
Any rough ideas when the revamped beginner tutorials will be out? No rush, just curious.
@lowrax2 жыл бұрын
Goood goood
@litote9 Жыл бұрын
Why do you use += rather than = for this line of code, pls explain what += means: v@P.y += v@scale.y/2;
@NineBetween Жыл бұрын
Sure, I'll do my best to explain it: = is used to make the left side equal to the right side. For example, if you say: x=1; Then x will have a value of 1. += is different because it adds the right side to the left side. For example: x = 10; x += 5; This will give x the value of 15 because we are making it equal to 10, and then adding 5. It is the same as saying: x = 10; x = x + 5; It is simply a shorter way to add a value to itself. So, in this case, we're saying add (v@scale.y/2) to (v@P.y) I hope that helps!