Closed booomji closed 3 weeks ago
Ok solved the problem to make this work in Maya 2024
If you have installed quixel bridge and the Maya plugin then Maya will source it's embeddedRL4.mll and MayaUERBFPlugin.mll from the Quixel folder which wont work for Maya 2024 ! You have to add Maya 2024 support in the Mod file that resides in your C:\dna_calibration folder by pasting the below code at the bottom of the file and save it. (I have submitted a pull request for the same so the team can either accept or add it themselves)
`+ MAYAVERSION:2024 PLATFORM:win64 MetaHuman-DNA-Calibration any . PYTHONPATH +:= PYTHONPATH +:= data PYTHONPATH +:= lib/Maya2024/windows MAYA_PLUG_IN_PATH +:= lib/Maya2024/windows``
Now when you start Maya 2024 the plugins from the C:\dna_calibration folder will also show up in you plugins menu (pic attached)
So load (and autoload) these plugins instead. Now Maya will path to the mll files in the C:\dna_calibration folder instead
Note to myself in the future -
This is a sample mod file `+ MAYAVERSION:2022 PLATFORM:win64 MetaHuman-DNA-Calibration any . PYTHONPATH +:= PYTHONPATH +:= data PYTHONPATH +:= lib/Maya2022/windows MAYA_PLUG_IN_PATH +:= lib/Maya2022/windows
MAYAVERSION:2022 PLATFORM:linux MetaHuman-DNA-Calibration any . PYTHONPATH +:= PYTHONPATH +:= data PYTHONPATH +:= lib/Maya2022/linux MAYA_PLUG_IN_PATH +:= lib/Maya2022/linux
MAYAVERSION:2023 PLATFORM:win64 MetaHuman-DNA-Calibration any . PYTHONPATH +:= PYTHONPATH +:= data PYTHONPATH +:= lib/Maya2023/windows MAYA_PLUG_IN_PATH +:= lib/Maya2023/windows
MAYAVERSION:2023 PLATFORM:linux MetaHuman-DNA-Calibration any . PYTHONPATH +:= PYTHONPATH +:= data PYTHONPATH +:= lib/Maya2023/linux MAYA_PLUG_IN_PATH +:= lib/Maya2023/linux
MAYAVERSION:2024 PLATFORM:win64 MetaHuman-DNA-Calibration any . PYTHONPATH +:= PYTHONPATH +:= data PYTHONPATH +:= lib/Maya2024/windows MAYA_PLUG_IN_PATH +:= lib/Maya2024/windows`
Cheers b
Hello, I download the latest version of this repo which is supposed to support Maya 2024. I get the error below only when I enable Rig - Logic when running the basic dna viewer in Maya 2024.
Error: root : Something went wrong, skipping adding the rig logic... Reason: Plug-in, "embeddedRL4.mll", was not found on MAYA_PLUG_IN_PATH
Steps
Additional info . -Quixel plugin is installed in Maya and points to embeddedRL4.mll in a different path
D:\Quixel_bridge\support\plugins\maya\7.2\MSLiveLink\DHI\plugins\Windows\2024
-I have Python 3.12 installed on my local system. I'm assuming Maya 2024 uses it's own python version
Quite a while ago I managed to run everything in 2023 but I was hoping to run it in 20224. What could be going wrong here ?
Thanks, b