Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi,
As I understand, you can modify preferences using the c4d.GetWorldContainerInstance() as specified in this thread However, for some reason, not all preferences are covered especially the Third Party preferences.
c4d.GetWorldContainerInstance()
I specifically trying to modify this one given by the script log prefs(1027974)[c4d.XPPREFS_SYSHUD_SHOW] = False
prefs(1027974)[c4d.XPPREFS_SYSHUD_SHOW] = False
It's from the Xparticles plug-in.
Is there a way around this?
Thank you
you will find your answer here.
Cheers zipit
Hi @zipit
Thanks for the response. The thread reference works as expected. Here is the code I used:
op = plugins.FindPlugin(1027974) # Retrieved from the script log if op: print op[c4d.XPPREFS_SYSHUD_SHOW] # we know the enum from the console
Have a great day ahead!