We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64d193b commit d3382ceCopy full SHA for d3382ce
1 file changed
com.unity.formats.alembic/Runtime/Scripts/Exporter/AlembicExporter_impl.cs
@@ -547,7 +547,7 @@ public override void Setup(Component c)
547
return;
548
}
549
#if UNITY_6000_4_OR_NEWER
550
- abcObject = parent.abcObject.NewXform(target.name + " (" + target.GetEntityId().ToString() + ")", timeSamplingIndex);
+ abcObject = parent.abcObject.NewXform(target.name + " (" + target.GetEntityId().ToString("X8") + ")", timeSamplingIndex);
551
#else
552
abcObject = parent.abcObject.NewXform(target.name + " (" + target.GetInstanceID().ToString("X8") + ")", timeSamplingIndex);
553
#endif
0 commit comments