Get/Set values from C4D Preferences?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 05/04/2003 at 08:52, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.100
Platform: Windows ;
Language(s) : C++ ;---------
I need to 'temporarily' set the Scale for the Wavefront Object Import in the Cinema 4D Preferences. Found the ID, but don't know where the data is to be set. How does one get access to the Preferences dialog information for setting and getting parameters within it?
Thanks,
Robert -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 05/04/2003 at 13:25, xxxxxxxx wrote:
Is there any way to get to the Import/Export settings through the BaseContainer returned by GetWorldContainer(void)? This can't be impossible, though it's not clear at all.
Robert -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 11/04/2003 at 12:30, xxxxxxxx wrote:
I don't see any way to do this, but I'll ask the programmers to be sure.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 15/04/2003 at 11:36, xxxxxxxx wrote:
It should be possible to do:
BasePlugin *plug = FindPlugin(saver_id); if (plug) { BaseContainer *bc = plug->GetDataInstance(); ... }
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 05/11/2007 at 06:53, xxxxxxxx wrote:
Hi !
Is any solution for this? Help me plz.
I want to change vieport move acceleration by shortcut. -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 05/11/2007 at 11:56, xxxxxxxx wrote:
GetWorldContainer()/SetWorldContainer()? If it's in the Cinema 4D Preferences, that is what to look into. If it's on the Editor:Configure, I don't know the procedure to get and set the descriptions for the viewport. Might need to get the active viewport and set its BaseContainer from descriptions in the resource folder.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 07/11/2007 at 09:55, xxxxxxxx wrote:
Thank you!
I found it.
I just moved in circle through every number ID in WorldContainer
Move acceleration 1081
Scale acceleration 1082
rotate acceleration 1083