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).
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 20/03/2010 at 08:47, xxxxxxxx wrote:
User Information: Cinema 4D Version: 11.5 Platform: Windows ; Language(s) : C++ ;
--------- If I have created my own MaterialData plugin, how would I then insert that material in to a scene? I mean within a plugin of course not manually in C4D.
Thanks,
~Shawn
On 22/03/2010 at 05:51, xxxxxxxx wrote:
PluginMaterial *mat = NULL; mat = PluginMaterial::Alloc(PLUGINID); if (!mat) return FALSE; doc->Insertmaterial(mat, NULL, FALSE);
cheers, Matthias
On 22/03/2010 at 07:15, xxxxxxxx wrote:
Great thanks Matthias.
Shawn