VEX, data types, attributes & functions - Houdini for Noobs 07

  Рет қаралды 15,050

AxisFX

AxisFX

Күн бұрын

Пікірлер: 34
@almossawi
@almossawi 4 жыл бұрын
cant thank you enough, this is very well needed and nobody seems to talk about the basics, thanks man!
@jiluen
@jiluen 4 жыл бұрын
Thank you very much for taking the time to make this awesome tutorial. I didn't find anything with this level of pedagogy anywhere else. You explain the basics of vex thoroughly, yet straight to the point. This will help a lot, thanks again!
@UmairAliMughal2009
@UmairAliMughal2009 Жыл бұрын
veyr very excellent and high quality stuff for beginner…please need more !🎉
@charlesm835
@charlesm835 Жыл бұрын
Thanks for these excellent beginner tutorials! Having never really jumped behind code before, you made it easy to understand the basics. I definitely had to be paying laser-focused attention and taking notes, but I'm sure that's what Houdini is all about.
@arsensuleymanov7935
@arsensuleymanov7935 4 жыл бұрын
Thanks for tutorial. Whould be happy to see more of VEX tutorials
@AxisDesignerGFX
@AxisDesignerGFX 4 жыл бұрын
I'll do a more advanced vex tut soonish. Covering arrays and vex in solvers.
@ЛизаКлёц-х9п
@ЛизаКлёц-х9п 2 жыл бұрын
Great tutorial! Thanks!!!
@dipankarbiswas033
@dipankarbiswas033 3 жыл бұрын
brother u r rock .. thanks for this tutorial >
@globglob3d
@globglob3d 4 жыл бұрын
Nicely explained, great tutorial
@mariacelis9278
@mariacelis9278 5 жыл бұрын
VERY GOOD TUTORIAL, examples are helpful and cover a lot of topics :)
@lalaneverquit
@lalaneverquit 4 жыл бұрын
This totally changed the way how I see Houdini. Nicely taught. Thanks 😊
@andresfelipehernandezospin5261
@andresfelipehernandezospin5261 4 жыл бұрын
I think that at kzbin.info/www/bejne/fHaWfn5urLCLiKs you're confusing attributes with variables (houdinitricks.com/vex-attributes-vs-variables/). They are not the same, that's why you need to reference attribute with @ after the data type. When write a variable, you start with the data type, then space and then the name of the variable
@Sk8oorDie
@Sk8oorDie 4 жыл бұрын
Thanks, but i got a problem. I scattered a sphere and used copytopoints with cubes. Now i want the cubes to change color, if they are far away from the middle of the sphere. I tryed something with an attributewrangle but i dont know which code to use. if(@P > far away from the middle of my sphere ) { @Cd= set(1,0,0); } it should be something like this... i hope you get the point :D
@AxisDesignerGFX
@AxisDesignerGFX 4 жыл бұрын
Hope this helps: www.dropbox.com/s/v4y6mt7odt12lp7/ramp_centre_v001.hip?dl=0
@ShawarmaBaby
@ShawarmaBaby 4 жыл бұрын
Anyone know the shortkey to compile?
@AxisDesignerGFX
@AxisDesignerGFX 4 жыл бұрын
I was using ESC to run the code
@andreyluccahannes5377
@andreyluccahannes5377 5 жыл бұрын
Hi, Is there a reason why you need to multiply @ptnum with a float, because mathmatically it doesent change anything if you multiply it with 1.0?
@AxisDesignerGFX
@AxisDesignerGFX 5 жыл бұрын
If you don't multiply it by a float it will stay an integer
@Dazzer1234567
@Dazzer1234567 4 жыл бұрын
It's just a trick to convert an int into a float without changing the value. Because if you do a float * int, VEX will automatically think that you want your answer to be float-ready, even if the answer of this particular multiplication could happily be expressed as an int.........so then the product is converted into a float.
@manishnamdeodir
@manishnamdeodir 5 жыл бұрын
codes are not working on Houdini 17.5
@AxisDesignerGFX
@AxisDesignerGFX 5 жыл бұрын
I did the tutorial in 17.5 lol
@Dazzer1234567
@Dazzer1234567 4 жыл бұрын
Working over here on 17.5...........
@Dazzer1234567
@Dazzer1234567 4 жыл бұрын
Great tutorial, many thanks, was looking for a basic VEX tut. to get started with VEX and this got the job done nicely...........
@NextroneOfficial
@NextroneOfficial 4 жыл бұрын
Wow! I was looking for some tutorials on attributes and just found this one of yours on your channel. Going to watch them all as i saw you have this series called houdini for noobs. Really trying to get the hang on how the attributes work, as i think im coming and more to understanding that learning and understanding attributes are really the building blocks of the Houdini. Now i just barely scratched the surface with them with the attribute transfer and the color (verry basic i know), but im starting to think of attributes as a sculpting process, like "sculpting the data to what fits the needs within the imagination."
@almossawi
@almossawi 4 жыл бұрын
By the way whats the difference between f@my_float, or float my_float when creating an attribute, do both work?
@AxisDesignerGFX
@AxisDesignerGFX 4 жыл бұрын
The attributes prefixed with '@' will be stored on geometry. float my_float will only be remembered while the code is running. They both work but only attributes you need to access later in your nodetree such as @pscale should be stored on points to save computation time.
@karolinasereikaite8233
@karolinasereikaite8233 3 жыл бұрын
Thank you for your explanation! I am totally beginner in vex, anyone can help with taking the points above a specific y-axis number? Let's say above 0 or above 0.2? Thanks!
@AxisDesignerGFX
@AxisDesignerGFX 3 жыл бұрын
Here's an example. Finds the difference between current lowest y position and adds that difference to every points Y pos. www.dropbox.com/s/205ds1xesh4csv2/move_above_y_v001.hip?dl=0 Let me know if that helps.
@karolinasereikaite8233
@karolinasereikaite8233 3 жыл бұрын
@@AxisDesignerGFX thanks a lot! Good to know that way now too! I eventually added groupexpression and delete nodes or with attribute wrangle creating threshold. I'm studying your option now, blows my mind how many ways there are to achieve goal! Thank you a lot.
@alistairbuchan
@alistairbuchan Жыл бұрын
These are really good. Even though Im going through them 3 years later they are super helpful for me personally getting into houdini. Good pace, good level and amount of info per video. Good helpful tone (some CG tutorials can be a bit patronising). Some tutorial series are a chore to get through, this one is not! When each one is done I look forward to starting the next!
@manishnamdeodir
@manishnamdeodir 5 жыл бұрын
thanks, for all the tutorial, they are all very easy to understand
@AxisDesignerGFX
@AxisDesignerGFX 5 жыл бұрын
No problem! Did you figure out the issue with your vex?
@Tyler-zb6ec
@Tyler-zb6ec 4 жыл бұрын
Dude you're awesome. I've went through soooo many tutorials to try and understand this and this one has helped me the most.
@npmmalayalamvfxtutorials1717
@npmmalayalamvfxtutorials1717 4 жыл бұрын
Wow, well understandable even if you are bad in English thanks mate...
Expressions - Houdini for Noobs 05
13:28
AxisFX
Рет қаралды 6 М.
The Joker wanted to stand at the front, but unexpectedly was beaten up by Officer Rabbit
00:12
Ozoda - Lada (Official Music Video)
06:07
Ozoda
Рет қаралды 11 МЛН
VEX Isn't Scary - Part 1: Basics
17:27
Nine Between
Рет қаралды 57 М.
Five Steps to Learning Houdini Quickly
17:41
Indie-Pixel
Рет қаралды 131 М.
Sweep Curves - Houdini for Noobs 18
12:30
AxisFX
Рет қаралды 18 М.
"You need a PHD to Learn Houdini 3D"
11:19
Stylized Station
Рет қаралды 157 М.
[VEX for Algorithmic Design] E01 _ Attribute Basics
51:40
Junichiro Horikawa
Рет қаралды 89 М.
Houdini VEX and VOPS: A Comparison
23:12
Nine Between
Рет қаралды 31 М.
3D Projection Mapping Workflow - Richard Burns
3:27:27
TouchDesigner
Рет қаралды 165 М.
Large FBX Scene Workflow - Houdini for Noobs 21
9:49
AxisFX
Рет қаралды 6 М.
Circle Pattern VEX tutorial
23:12
Ana
Рет қаралды 21 М.
I didn't know LightBurn could do THAT!
16:12
The Tinkerverse
Рет қаралды 79 М.
MAGICIEN VS MOLDU (Les best X3942) 😂🪄
1:00
Achille Magic
Рет қаралды 2 МЛН
Make the kids laugh🤣
0:30
Yoshipapa / よしパパ
Рет қаралды 3,3 МЛН