-
Content count
53 -
Donations
0.00 CAD -
Joined
-
Last visited
-
Days Won
1
hall last won the day on August 8 2020
hall had the most liked content!
Community Reputation
9 NeutralAbout hall
-
Rank
Peon
Personal Information
-
Name
C
Recent Profile Visitors
2,945 profile views
-
hall changed their profile photo
-
It seems a problem with license, better to send an email to sidefx support! support@sidefx.com
-
Hey Maze! I got it. Just update the attribcreate1 for integer type, you're using float. This will fix it!
-
I don't know why attribute transfer isn't working as expected. Because you are overwriting the geometry on each frame using active attrib. Anyway, I'm attaching a hipfile with similar approach, but instead attrib transfer animated, it will transfer from a bunch of points from a box animated. I hope it helps! bullet_active_overtime.hip
-
Stash is a cache node. That's why you can see the TRAFFIC geo. It's cached in the stash sop. http://www.sidefx.com/docs/houdini/nodes/sop/stash.html
-
-
if I understood the question correctly, you are trying to generate an array of integers with newly created points: You have to run over detail only once. vector P; int btmSideArray[]; for (int i=0;i<@numpt;i++){ P = point(0, "P", i); int btmSide = addpoint(0, set(P.x, P.y-1, P.z)); append(btmSideArray, btmSide); setdetailattrib(0, "btmSide", btmSideArray, "set"); } hip file attached. appendarray.hip
-
os.environ["PATH"] += os.pathsep + os.path.join(path)
-
There's an option to save asset definition inside the hipfile. Assets >> Asset Manager .. [ Configuration ] Save Operators definitions to Hip File. For geo, you could use a 'stash' sop node or lock the node. It's a bit difficult to visualize possible problems without seeing the geometry. Looking through your scene everything looks fine. There are many ways to solve complex scenes and this will depend a lot on the challenges you face to output and which control you're looking for.
-
How to edit locked parameter in parameter interface?
hall replied to kiryha's topic in General Houdini Questions
I guess isn't possible to change that. Have you consider to use spare parameters or HDA? Modifying that parameter may implies changing all nodes of the same type. That's why it's restricted -
I guess the best method is to use python. import os print(os.path.isdir('/dir/path/'))
-
I believe it follows the convention of many languages to handle string. It's very common in any scripting language to use single, double quotes to represent strings. in the case of the houdini backtick is an expression in hscript that does not represent a numerical value. If you represent everything with backticks, could be the same data type, what is not correct. Right?
- 5 replies
-
- intuitivity
- syntax
-
(and 1 more)
Tagged with:
-
Hard to know without knowing the specs/OS and network config. Check out this topic, btw. http://forums.odforce.net/topic/16347-hqueue-errors-in-win7x64/ Also, It seems your file is located on the desktop, Are you sure all nodes have access to it?
-
Hard to see. Can I see the hip file? Try to increase voxel resolution for "particle fluid surface" - default 0.75 scale down to 0.5 and so on. See if u notice some improvement. Good luck!
- 5 replies
-
- fluid
- oceanextend
-
(and 1 more)
Tagged with:
-
Here's a sample for SDF representation and gas analyses to get curvature data. Can I see the reference technique you are looking for? curv_analyse_sdf_repr.hip