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).
On 08/02/2016 at 12:55, xxxxxxxx wrote:
Hi! I'm looking for the ID of the "Interaction Tag":
oInteractionTag = oSel.MakeTag(???)
By the way - where in the SDK help do I find a complete list of available tags and their IDs? Is it this? https://developers.maxon.net/docs/Cinema4DPythonSDK/html/types/tags.html Seems to be incomplete...
Thanks! Best regards Eugen
On 09/02/2016 at 00:04, xxxxxxxx wrote:
Figured! oInteractionTag = oSel.MakeTag(c4d.Tinteraction)
It's only to be found in the C++ docs, however: https://developers.maxon.net/docs/Cinema4DCPPSDK/html/group\_\__tag_types.html
Best regards Eugen
On 09/02/2016 at 02:58, xxxxxxxx wrote:
Hi,
The tag list in the Python SDK docs has to be updated. Thanks for reporting this.
To find out the ID for a tag drag&drop it in the console and print it (press enter) or call GetType() on the dragged variable. This can be used for any other entity in Cinema. Then to get the name for the ID search resource/coffeesymbols.h Note some entities ID doesn't have a name so in that case use the ID integer value.
On 10/02/2016 at 00:37, xxxxxxxx wrote:
Hello! Good tip, thanks, Yannick! Best regards Eugen