Hi,
I'm trying to get Ornatrix installed on a network share and then loaded via a launcher script for ease of updating and maintenance.
The idea is that when installing a new build, I can run the .run file, move the extracted files into a folder with the version number, then update a variable in the launcher and we are good to go.
However when loading maya I'm getting the following error:
Plug-in, "Ornatrix" was not found on MAYA_PLUG_IN_PATH
The launcher script is here below, and as far as I can tell from the readme included in the installer, I've specified all the paths. Is there anything I've missed or could try?
#!/bin/bash
#
export QT_COMPRESS_TABLET_EVENTS=1
echo "Launching Maya 2022v3"
echo ". . . . . . . . . . . . . . " | pv -qL 12
# Setup the Redshift license variable
export redshift_LICENSE=XXXX@XXX.XXX.XXX.XXX
#Set up Ornatrix
ORNATRIX_VERSION="3.3.5"
export EPHERE_MONO_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Apps/Ephere/Mono64"
export ORNATRIX_GROOMS_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Data/Ephere/OrnatrixMaya2022/Grooms"
export ORNATRIX_PRESET_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Data/Ephere/OrnatrixMaya2022/CurvePresets"
export ORNATRIX_SCRIPTS_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Data/Ephere/OrnatrixMaya2022/Scripts"
export MAYA_MODULE_PATH="$MAYA_MODULE_PATH:/puk/apps/Ornatrix/$ORNATRIX_VERSION/Module/"
exec /puk/apps/autodesk/maya-2022v3/bin/maya ${@}