Tried putting Live2D model in Java GUI... Accidentally made OBS ripoff

Опубликовано: 19 Июнь 2026
на канале: ProjCRys
221
2

There are no Live2D tutorial on how to display Live2D models in Java specifically in GUI. Github repos are also hard to implement because I have no idea on how to display the outputs into the GUI. Texts are easy because I could just retrive it from a terminal. Images and videos are challenging but doable because of BufferedImage and Media class built in Java.

Live2D on the other hand... it uses moc3 files or model.json files... so I don't andastand how I would process it anyway. I tried using Live2D Java SDK from the official site... I didn't get it cuz I can't read documentation.So I tried to come up with a way on how to display it.

I thought if I could capture the window content of Cubism Viewer and draw it on the JPanel... I would only need to crop and set the background to transparent...

Then I made OBS ripoff, which only tracks the window. So it's practically useless as it can't draw the contents if minimized but still interesting in a way.


#live2d #javaprogramming #java