On 22/07/2015 at 01:12, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R16
Platform: Windows ;
Language(s) : C++ ;
---------
Hello.
I have noticed a problem while saving a file and i was wondering if this behavior is intended.
return RegisterSceneSaverPlugin(
ID_MY_PLUGIN_EXPORT,
GeLoadString(ID_MY_PLUGIN_EXPORT_MENU_OPTION),
PLUGINFLAG_SCENEFILTER_DIALOGCONTROL,
Alloc,
"Any Description",
"any1.any2.ext"
);
When i click this option in export menu, a dialog opens with the defined suffix any1.any2.ext.
I enter the name temporary.any1.any2.ext and then the save method is called.
Save(BaseSceneSaver* node, const Filename& name, BaseDocument* doc, SCENEFILTER filterflags)
The second parameter has value temporary.any1.any2 .any1.any2.ext.
Is this intended ? Do i have to use only 1 extension as suffix ?
Thank you for your time.