Nic Tanghe

NicTanghe

About Me

専門知識
Not Specified
Location
Not Specified
ウェブサイト

Connect

Recent Forum Posts

Reverse Foot setup problems 2023年3月14日15:13

Hello,

I`m having some problems with my reverse foot rig.

can someone help me out in figuring out what I`m doing wrong ?

THX !

Solaris renders in Viewport but doesn't in ROP 2023年3月5日7:54

When I have problems like this it`s usually User error.

Launchripts alacritty Linux desktop/shell 2023年3月5日7:06

Hello I had some problems setting up a desktop file for houdini.

here are My laucnhscripts ects.

DESKTOP:

[Desktop Entry]
Version=1.1
Name=Houdini 19.5
GenericName=Houdini 19.5
Categories=X-Houdini;Graphics;3D Graphics
Exec="/home/*****/dev/scripts/l_houdini_1.sh" %F
Icon=/opt/hfs19.5/houdini_logo.png
Type=Application
Terminal=false
Encoding=UTF-8


l_houdini_1 :

alacritty --hold -e /home/nanghe/dev/scripts/l_houdini_2.sh $1

l_houdini_2:

#!/bin/zsh
cd /opt/hfs19.5
source ./houdini_setup



export PATH="$PATH:*"
export OCIO='/home/nanghe/CGI/color/OpenColorIO-Configs/aces_1.2/config.ocio'
export __EGL_VENDOR_LIBRARY_FILENAMES=/usr/share/glvnd/egl_vendor.d/50_mesa.json
export HSITE="/home/nanghe/CGI/HSITE"
export QTWEBENGINE_CHROMIUM_FLAGS="--single-process" houdini

if [ -z "$1" ]
then
      houdini
else
      hvieuw $1
fi

exec zsh


sudo ln -s ~/dev/scripts/l_houdini_shell.sh /usr/bin/houdini
to laucnh from shell with houdini

l_houdini_shell:

#!/bin/zsh
initdir=$(pwd)
cd /opt/hfs19.5
source ./houdini_setup
cd $initdir

if [ -z "$1" ]
then
      houdini
else
      hvieuw $1
fi