[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.Question : Looping & Not Looping a Motion (.mtn)
If this is how you loop a mtn:
---------------------
[ inside load function: ]
Simple.loadBytes(modelDef.motion, function(buf){
motion = new Live2DMotion.loadMotion(buf);
});
[ inside periodic draw function: ]
if(motionMgr.isFinished()){
motionMgr.startMotion(motion);
}
motionMgr.updateParam(live2DModel);
---------------------
How do you play a motion only once? (ie: not looping)
Thanks in advance)
0 ·
Comments
Live2D API doesn't function to motion play only once .
I think there is only flag management .
[For example]
------------------------------
var once = 1; // frag
if(motinMgr.isFinishied() && once > 0){
motionMgr.startMotion(motion);
once--;
}
------------------------------