Hi, my plugs worked OK in iC7 (and mostly in iC8) but some users have complained about "File Not Found" error in iC8 when looking for default content.
Currently I find the "Box.iProp" in the "Beveled" sub-folder like this:
Registry = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)
RawKey = winreg.OpenKey(Registry, r"SOFTWARE\Reallusion\iClone\8.0")
ic_template_path = os.path.abspath(winreg.QueryValueEx(RawKey, "Template Data" )[0])
RLPy.RFileIO.LoadFile(ic_template_path + "//Props//3D Blocks//Beveled//Box.iProp")
It seems that if the user has modified something in the default template path, this method no longer works.
The iC8 Wiki has some examples
here, but I can't seem to get anything below the 'root' Prop directory working. Any tips?