-
Content count
346 -
Donations
0.00 CAD -
Joined
-
Last visited
-
Days Won
14
kgoossens last won the day on March 27 2015
kgoossens had the most liked content!
Community Reputation
83 ExcellentAbout kgoossens
-
Rank
Illusionist
- Birthday 03/31/1971
Personal Information
-
Name
Kim
-
Location
Belgium, Antwerp
-
Hello everyone, It is not entirely clear to me. The handle geoself() is generating an int value. Is it variable? Is there a difference between using geoself() or int 0? If so what are examples to use it.
-
How to check if a value of any of the otl's parameters has changed.
kgoossens replied to kgoossens's topic in General Houdini Questions
Thanks Tom and Jeff for the help! The addEventCallback was exactly what I was looking for.- 4 replies
-
- parameters
- hda
-
(and 1 more)
Tagged with:
-
How to check if a value of any of the otl's parameters has changed.
kgoossens posted a topic in General Houdini Questions
Hi everyone, I need to be able to change a value inside my otl based on any parameter change of the otl. Is there a method to check that? Cheers, Kim- 4 replies
-
- parameters
- hda
-
(and 1 more)
Tagged with:
-
How to check if a value of any of the otl's parameters has changed.
kgoossens posted a topic in General Houdini Questions
Hi everyone, I need to be able to change a value inside my otl based on any parameter change of the otl. Is there a method to check that? Cheers, Kim- 1 reply
-
- parameters
- hda
-
(and 1 more)
Tagged with:
-
Is there a possibility to have @ working inside a vex function?
kgoossens posted a topic in General Houdini Questions
Hi, Is there an possibility to have @ working to create write attributes in a vex function? Something similar to the following function void test() { i@test_attrib = 10; } The reason I want to avoid setattrib is that it is much slower as implementation. Are there any other idea's? does the *.vcc compiler optimize the setting of attributes? Cheers -
Hi everyone, In the older versions of houdini it was possible to set the "clear viewport value", it seems this has now been replaced by the onion skinning. I was wondering is the option still available somewhere as it is described in "Houdini on the spot" "Onion-Skinning" ? I could really use the feature and I'm unable to get what I need using the current onion skinning. Thank you!
-
-
It depends how flexible you want the system to be, but a first easy approach would be to. 1-Sweep a line first 2-use triangulate 2d on that shape. this way you'll get rid of the overlapping polygons. 3-extrude the shape in the Y axis to give thickness
- 7 replies
-
- sweep
- degenerate
-
(and 2 more)
Tagged with:
-
Attribute transfer in one axis?
kgoossens replied to Neon Junkyard's topic in General Houdini Questions
It is hard to tell without seeing the data. But can't you achieve the same by Storing the point positions as an attrib flattening the shapes in the Y direction before the attrib transfer And then restoring the point positions? -
Go to the top menu Edit/Preferences/Desktops and Toolbars/Save Desktops Automatically
-
Hi, Is it possible to overload snippet inputports? If so how should this be done. I'd like for example make a multiply function that can deal with array's of various types. Cheers!
-
Is it possible to share the presets folder by having it referenced from a different location then the "..User\Documents\houdini15.0\presets" on windows? I can get it to work with HOUDINI_PATH and couldn't find another dedicated Path variable for it. Are there other methods? Cheers. Kim
-
fetch node: get channels of multiple objects
kgoossens replied to kgoossens's topic in General Houdini Questions
Solved using the foreach node chop node. -
Hi, Is it possible to get the channels of multiple objects in the chops context using one node? Perhaps importing bundles, or defining a list nodes? Thanks!