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,
Is there a way to access the built-in icons in Cinema4D as an image for a button? For instance, the cube/box icon. There is a line in this thread: icon = c4d.bitmaps.InitResourceBitmap(c4d.RESOURCEIMAGE_OK) but the resource image page in the documentation do not include the cube icon.
icon = c4d.bitmaps.InitResourceBitmap(c4d.RESOURCEIMAGE_OK)
Is there another page I should look for?
you can pass just the general node IDs in most cases (instead of a specific icon ID). So you do not really have to look them up for nodes, as you can guess them in most cases. But you can find all symbols here.
bmp = c4d.bitmaps.InitResourceBitmap(c4d.Ocube) c4d.bitmaps.ShowBitmap(bmp)
Cheers zipit
@zipit
I see. It's the same as the object ID. I also tried it with external plug-in icons. It works as expected.
Thanks for the clarification!