[Regarding macOS Tahoe](Updated September 18, 2025)
We cannot guarantee the compatibility of the current releases of Live2D Cubism Editor and Cubism SDK with macOS Tahoe.
We advise against upgrading your macOS at this time as it may cause Live2D products not to function correctly.
Upgrading macOS can also cause you to lose your Cubism Editor license file.
Please make sure to deactivate your Cubism Editor license before upgrading the macOS.
For more details:
https://help.live2d.com/en/other/other_09/For inquiries regarding issues with license purchases or license activation errors, please contact us through the
email form.RenderMode.DrawMeshNow error
Hi there, it's me again!

I uploaded a first version of my app for my testers and noticed in my exception logging that apparently an error is thrown without doing any harm. At least that's what I can see when testing.
Live2D Cubism 2.1 / RenderMode.DrawMeshNow Error live2dmodel.draw() must be called in OnPostRender() or OnRenderObject() . -------------------
at live2d. :drawLast()
I used the newest code from the Unity sample app provided with the SDK.
0 ·
Comments
ALive2DModel.draw()
shouldn't be called fromMonoBehaviour.Update()
when you useRenderMode.DrawMeshNow
. Could you recheck that the script for drawing the model callsALive2DModel.draw()
inMonoBehaviour.OnRenderObject()
like this:It's a little bit weird to do so...