How to find Tag IDs
-
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/py/2023_2/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/cpp/2023_2/group\_\__tag_types.htmlBest 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