Ali Seiffouri

Seiffouri

About Me

Procedural Technical Artist
EXPERTISE
Technical Director
INDUSTRY
Gamedev

Connect

LOCATION
United States

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Freelance Houdini Grooming Artist needed Dec. 12, 2019, 2:15 p.m.

Our company (Synthesis AI) is interested in working with freelance “Houdini Grooming Artists” for an ongoing project.
Candidates should show their skills through work samples from previously completed projects (demo reel, still renders).
Please let me know if you or anyone in your network is interested:
ali@synthesis.ai

Regards
-Ali

Reloading the image on UVQuickShade Dec. 13, 2016, 8:19 p.m.

Hi
I recently noticed that you cannot reload the image on UVQuickShade node.
It seems that the image is cached somewhere and cannot be reloaded.
Therefore I have to restart Houdini to see the updated results.

Please guide me how to resolve this issue.
Thanks

HDA python module doesn't work every first time it is opened Oct. 10, 2016, 7:44 p.m.

julca
Hello,
If it's just a reload problem just use the “reload(yourModule)” function.
But, as that's the entire module which not found, I suggest you to add your module folder path in your system path :
import sys
currentPackagePath = "fullPathToYourScript/moduleFolder"
if not currentPackagePath in sys.path :
    sys.path.append(currentPackagePath)
#Now, import your module should work
import yourModule

Hope that help you.


Thanks Julca
But the python module is a part of my digital asset, How about that?