marsupial
marsupial
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Problem to load hou module in the standart OSX Python 2015年7月2日1:14
I don't think it's possible using DYLD_LIBRARY_PATH as theres a few competing library versions between Houdini and the OS (at least for 10.10). I've been able to get it working by changing where _hou.so looks for it's libraries. But this might only be a good solution locally.
installNameChanges()
{
# installNameChanges <file> <replace> <with>
otool -L "$1" | while read line; do
echo "$line" | grep -q "$2"
if [ $? -eq 0 ]; then
lib=$(echo ${line} | awk -F''"$2"'| ' '{print $2}')
if [ -n "$4" ]; then
echo install_name_tool -change "$2$lib" "$3/$lib" "$1"
else
sudo install_name_tool -change "$2$lib" "$3/$lib" "$1"
fi
fi
done
}
installNameChanges "${HFS}/houdini/python2.6libs/_hou.so" @rpath/ @loader_path/../../../Libraries/
installNameChanges "${HFS}/houdini/python2.7libs/_hou.so" @rpath/ @loader_path/../../../Libraries/
IMG_File::jumpToFrame 2010年6月11日13:23
Trying to get a Quicktime IMG_File plugin working, but I need to access the current frame being requested.
IMG_FilejumpToFrame and other time related methods are marked as deprecated.
Is there a way to get this information?
The moment I try to use $F in the filename, Houdini sees the expanded filename doesn't exists and my format is no longer called.
Is there some sort of meta tag similar to FBX import, ( $HFS/../file.fbx#object ) one can set up to get this information.
Thanks
IMG_FilejumpToFrame and other time related methods are marked as deprecated.
Is there a way to get this information?
The moment I try to use $F in the filename, Houdini sees the expanded filename doesn't exists and my format is no longer called.
Is there some sort of meta tag similar to FBX import, ( $HFS/../file.fbx#object ) one can set up to get this information.
Thanks