You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 1, 2024. It is now read-only.
It seems like for whatever reason some of the triton dlls aren't being loaded despite not being marked as downloaded from web. We're experiencing this on a singular machine based on the same repo/files. Any thoughts on what could be causing this?
The text was updated successfully, but these errors were encountered:
@apriltmu Can you check to see if the initialization routine completed successfully?
if (!TritonPreprocessor_MaterialLibrary_CreateFromFile(TCHAR_TO_ANSI(*filename), &m_Handle))
{
return false;
}
or -
if (!TritonPreprocessor_MaterialLibrary_CreateFromMaterials(materials.GetData(), materials.Num(), &m_Handle))
{
return false;
}
It appears that the first call to Triton in GuessMaterialInfoFromGeneralName was commented out probably due to this problem. If you have a min repro project that you can send to us, we can take a look. Maybe there is a bad copy of Triton.Preprocessor.dll in the project and you need to copy the working copy to the instance of the project that isn't working.
Do you have any other modifications made to the plugin code?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It seems like for whatever reason some of the triton dlls aren't being loaded despite not being marked as downloaded from web. We're experiencing this on a singular machine based on the same repo/files. Any thoughts on what could be causing this?
The text was updated successfully, but these errors were encountered: