-
Content count
474 -
Donations
0.00 CAD -
Joined
-
Last visited
-
Days Won
2
Mzigaib last won the day on September 23 2019
Mzigaib had the most liked content!
Community Reputation
20 ExcellentAbout Mzigaib
-
Rank
Illusionist
- Birthday 04/09/1975
Contact Methods
-
Website URL
http://www.vimeo.com/17790588
Personal Information
-
Name
Michel
-
Location
Brazil
-
Mzigaib changed their profile photo
-
-
Rendering multiple redshift ROPs (Render Nodes)
Mzigaib replied to Jimbo55's topic in Lighting & Rendering
Hi! Anyone knows if it is possible to do that in TOPs I mean render multiple frames at once, I try to do that but I get errors. Thanks. -
This so useful that it should be incorporated in Houdini.
-
Yeah I am aware of texture bombing I was hoping that someone knew a simpler way to just rotate the udims independently like Andrew does in Blender. Thanks for the tip thou.
-
That is really cool Konstantin thanks for that! Can you tell if there is also a easy way to do that regardless of the surface division like in a single poly plane like this - Rotate uv tile blender tutorial Thanks.
-
Mzigaib started following Use button to set a variable value in a menu script with python, , FEM muscle external geo, Physical simulation and and 3 others
-
FEM muscle external geo, Physical simulation
Mzigaib replied to chovasie's topic in Animation & Rigging
Hi, I am looking for a workflow where I could mix alembic animation for the skeleton and use it to drive a static muscle model, I tried to use the "tissue system" but no success I am also trying to use instead of a FEM a vellum simulation which is way faster so no build in tool to do that as far as I know so I am stuck on how to "stick" my static muscle model to my skeleton animation cache properly, any tips? Thanks! -
I suggest to use the layer COP in this case.
-
I am using the Houdini hair tools to groom a character and I hit a wall where I need have my skin groups transferred to my guides where Houdini doesn't do that by default, let me know if I am wrong, if I use a group transfer SOP it takes a lot of time with a large amount of guides, shouldn't the guides inherit the skin groups by default? Is there a efficient way to do it? I hope I am making sense. Thanks in advance.
-
Use button to set a variable value in a menu script with python
Mzigaib replied to Mzigaib's topic in Scripting
Thank you so much for your time to explain me that I am totally gona try that, I didn't know that phm() module. I'll let you know what I got. Thanks again! -
Use button to set a variable value in a menu script with python
Mzigaib replied to Mzigaib's topic in Scripting
I think the right question should be how do I access the menu module script from a command button, everywhere I look just explain how to do that If I want to access the module in a digital asset which I think it is not the case. -
Use button to set a variable value in a menu script with python
Mzigaib replied to Mzigaib's topic in Scripting
No one? -
Use button to set a variable value in a menu script with python
Mzigaib replied to Mzigaib's topic in Scripting
I have my function on my ordered menu list: import os def listDirs(check): result = [] houDir = os.listdir(hou.getenv('JOB')+'/houdini') if check==1: for dir in houDir: result+=[dir,dir] return result else: result=["Nothing","Nothing"] return result return listDirs(check) I want my button on the same node to pass a value '1' to my 'check' variable in that function, how do I do that? I did try on a callback button: hou.pwd().parm('dirList').listDirs(1) But it didn't work, what am I missing? Thanks. -
I have a simple ordered menu that have python script that has a variable 'check', I want that a button on the same node changes the value of this variable, with hscript I just put 'set -p check=1' on the callback script and I can access this variable on my menu's script, how do I do that with python? I hope that makes sense. Thanks.
-
Yes I don't use phyton, but thanks anyway.
-
I found a way: # Check if directory exists set check='' foreach dir(`system(" if [ -d 'your_directory_path_or_not' ];then echo 'yes';else echo 'not';fi")`) if (`strmatch($dir,"not")`==1) set check = 'Not Found' else set check = 'Found' endif end message $check But if anyone have a better and more elegant way let me know. Thanks.