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
[About Cubism Editor / SDK 5.4 Alpha](Updated: July 14, 2026)

You can download the alpha installer from the dedicated forum below.
If you have any feedback regarding the alpha version, including feature requests or bug reports, please use the same forum.

Cubism Editor / SDK 5.4 Alpha Forum
https://creatorsforum.live2d.com/c/cubismeditorsdk54alpha/

[Regarding macOS Tahoe](Updated October 16, 2025)

macOS v26 Tahoe is now supported!
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.

Typescript definition problem, missing class ALive2DModel in Live2DFramework.js

edited July 2016 in Help
Hello there,

I'm currently working on a Live2D Angular2 application, for that purpose I created typings definitions for Live2DFramework, but once I finished I saw that one class was missing: ALive2DModel.

Where can I find this class? If I can't find this class I'll have to use any as type, which is not really good for a lib typings declaration.

Comments

  • Hi, @Supamiu !

    I think Alive2DModel is a class in the live2d.min.js .
    You take the Alive2DModel in the following code .
    Simple.loadBytes(modelDef.model, function(buf){
        // live2DModel == Alive2DModel
        live2DModel = Live2DModelWebGL.loadModel(buf);
    });
    
    API Document also try to reference .
    Good Luck!

    Live2D API Reference
    http://doc.live2d.com/api/core/cpp2.0e/a00001.html#a15018757384c5a7234e537864a2cad39
  • Thank you ! :)

    Problem now is that I don't know if the Live2D api doc you linked (the C++ doc) matches the JS API.

    Do you know where I can find any ETA on some typings for Live2D? Or maybe any documentation on the JS version so I can make a typescript library wrapped around Live2D.
  • Hey, sorry for answering late. Unfortunately there's no official documentation on the Javascript version, but the API @naotaro linked pretty much ressembles the Javascript version. I hope we can improve on that part with the next major version.
Sign In or Register to comment.