<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Read Alembic tag&#x27;s data]]></title><description><![CDATA[<p dir="auto">Hi,<br />
Could you please help me find out how to read data from a Talembic tag?</p>
<p dir="auto">There is an object with a vertex color tag, then the object is baked as Alembic by using  the "Bake as Alembic" menu item popped by right click on the object.<br />
Then the backed Alembic file is imported automatically. However, the original vertex color tag becomes an Alembic tag.</p>
<p dir="auto">Can you please help me find out how to read the vertex color data from the new Alembic tag?<br />
Thank you very much!</p>
]]></description><link>http://developers.maxon.net/forum/topic/16082/read-alembic-tag-s-data</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 02:41:23 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/16082.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 05 Mar 2025 03:33:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Read Alembic tag&#x27;s data on Thu, 06 Mar 2025 02:53:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/m_adam">@<bdi>m_adam</bdi></a>, Thank you very much, this works for me!</p>
]]></description><link>http://developers.maxon.net/forum/post/76066</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/76066</guid><dc:creator><![CDATA[BruceC]]></dc:creator><pubDate>Thu, 06 Mar 2025 02:53:46 GMT</pubDate></item><item><title><![CDATA[Reply to Read Alembic tag&#x27;s data on Wed, 05 Mar 2025 08:54:08 GMT]]></title><description><![CDATA[<p dir="auto">Hey <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/brucec">@<bdi>BruceC</bdi></a> in order to get the real tag data under the alembic tag you need to send <a href="https://developers.maxon.net/docs/cpp/2025_1_0/group___m_s_g.html#ga343cf0200bdbed6506adaec93796cc14" target="_blank" rel="noopener noreferrer nofollow ugc">MSG_GETREALTAGDATA</a> message to it.</p>
<pre><code class="language-cpp">BaseTag* alembicTag = obj-&gt;GetTag(Talembic);
if (!alembicTab)
  return;

GetRealTagData realTag;
alembicTag-&gt;Message(MSG_GETREALTAGDATA, &amp;realTag);
if (realTag.res &amp;&amp; realTag.res.GetType() == Tvertexcolor)
{
  VertexColorTag* const vct = static_cast&lt;VertexColorTag*&gt;(realTag.res);
  // Do something with it
}
</code></pre>
<p dir="auto">Cheers,<br />
Maxime.</p>
]]></description><link>http://developers.maxon.net/forum/post/76046</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/76046</guid><dc:creator><![CDATA[m_adam]]></dc:creator><pubDate>Wed, 05 Mar 2025 08:54:08 GMT</pubDate></item></channel></rss>