"[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] (5/19/2022)
Cubism Editor 4.2 beta1 and SDK R5 beta1 are now available!
Cubism Editor 4.2 beta1 includes many new features that expand the range of expression even further than 4.1.
Cubism SDK R5 beta1 also supports some of the new features in Cubism Editor 4.2!
The 4.2alpha category will be closed at the end of May. Currently, it is for browsing only.
If you have any comments or requests for 4.2 beta1 or later, please send them to
Cubism Editor category .
The alpha version of the Editor will be available until the end of June, but we recommend you to move to the beta version when you use it.
Unity and Live2D SDK compatibility
I'm practicing making live2d viewer with Unity 5.6.6 and SDK 2.1
Are they compatible with each other?
0 ·
Comments
I'm using create live2d canvas option like the tutorial but keep getting the error NullReferenceException: Object reference not set to an instance of an object
at line 42 and 61
these lines are:
void OnRenderObject()
{
if(!isVisible) return;
if(model==null)return;
if(model.GetLive2DModelUnity().getRenderMode() == Live2D.L2D_RENDER_DRAW_MESH_NOW)
{
model.Draw();
}
if (LAppDefine.DEBUG_DRAW_HIT_AREA)
{
model.DrawHitArea();
}
}
void Update()
{
if(!isVisible) return;
if (model == null) return;
model.Update();
if (model.GetLive2DModelUnity().getRenderMode() == Live2D.L2D_RENDER_DRAW_MESH)
{
model.Draw();
}
}
what can I do to fix this, everytime I tick the box LAppModelProxy script, this error keeps appearing and then the script got untick
This error seems to happen since the model has not been imported properly. It would better to check if relative path in model.json is correct.
thanks,