If you have any questions, reports, suggestions, or requests about Live2D, please send them to this community.
※We cannot guarantee statements or answers from Live2D staff. Thank you for your understanding in advance.
※Please do not use direct messages to contact our staff. We will not reply to your message. Please use the Direct Message function as instructed only when our staff requests files via Direct Message.
Live2D Cubism
Cubism Products and Downloads
Cubism product manuals and tutorials
Cubism Editor Manual Cubism Editor Tutorial Cubism SDK Manual Cubism SDK Tutorial"[NOTICE]" About the support for Mac models
Cubism Editor is not supported with Apple M1 processors.
Please refer to
System Requirements for details.
We will not respond to any related inquiries with this message.
[INFORMATION] (06/16/2022)
Cubism Editor 4.2.00 and SDK R5 beta3 are now available!
Cubism Editor 4.2 includes many new features that expand the range of expression even further than 4.1.
Cubism SDK R5 beta3 also supports some of the new features in Cubism Editor 4.2!
How to reduce draw calls?
I want to reduce draw call in Unity. What exactly affect draw call count in Unity? Canvas size in modeler? The amount of texture files? or the size of texture files?
My textures are currently 2048x2048 in size inside modeler, but after i convert it to .moc files, i can reduce it to 1024x1024, will this help in reducing the draw call count? or it doesn't matter?
0 ·
Comments
When analyzed by Unity Frame Debugger,
you can understand that it has been DrawMesh for each drawing object .
Draw Call depends on the number of drawing objects .
I think there are two ways to reduce the Draw Call.
1. Summarize or reduce the number of drawing objects (Edited on Modeler)
2. Use the Unity sdk sample project of TexturePacker (Unity SDK2.1 beta later)
Reference page : http://qiita.com/naotaro0123/items/f658eb3fbfcf842c47e7
We'll try those.