Howdy, Stranger!

It looks like you're new here. Sign in or register to get started.

If you have any questions, reports, suggestions, or requests about Live2D, please send them to this forum.
※We cannot guarantee statements or answers from Live2D staff. Thank you for your understanding in advance.
 
Live2D Cubism
Cubism Products and Downloads
Cubism product manuals and tutorials
Cubism Editor Manual    Cubism Editor Tutorial    Cubism SDK Manual    Cubism SDK Tutorial
[INFORMATION](03/28/2024)
Cubism Editor 5.1 alpha version is now available!
Find out how to use the new features here.
Please take this opportunity to use it and give us your feedback!

For more information and download, please check out the Cubism Editor 5.1 alpha category.

Unity and Live2D SDK compatibility

edited December 2023 in Help
I'm practicing making live2d viewer with Unity 5.6.6 and SDK 2.1
Are they compatible with each other?

Comments

  • edited July 2018
    Hi I already figured out that it is compatible so I will change my question a little

    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
  • Hi,

    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,
Sign In or Register to comment.