跳至主要內容

How to Map MediaPipe Skeleton to Unity Humanoid

(the post is automatically translated by AI) Introduction MediaPipe is a collection of ML solutions maintained and developed by Google for various computer vision tasks, including detecting multiple body parts 1 — face, hands, torso, hair, and more (Figure 1). Figure 1 One of the most common applications is using the Holistic 2 solution for full-body skeleton detection. Since it captures both facial and body landmark data, it can substitute for traditional motion capture hardware (e.g., MoCap suits) — especially useful for Vtuber applications that don’t require high-precision motion. ...

March 8, 2023 · 4 min · GanniPiece

How to Enable and Detect Memory Leaks in the Unity Editor

(the post is automatically translated by AI) Introduction A memory leak occurs when allocated memory is never freed. While it doesn’t necessarily cause immediate crashes, a leak gradually reduces the available memory, degrading system performance over time. In severe cases, it can lead to unpredictable errors or even security vulnerabilities 1. Memory: “Hmm? Something smells.” One of the most common causes of memory leaks is forgetting to free dynamically allocated memory — for instance, calling new on the heap and never calling delete. The unpredictable timing of when this causes problems makes debugging quite difficult. ...

May 3, 2022 · 2 min · GanniPiece

How to Import a VRoid Studio Model into Unity with Mixamo Animations

(the post is automatically translated by AI) Introduction Interested in the Vtuber ecosystem and how it works? The best way to learn is by doing. In this article, I’ll walk through how to quickly create a Vtuber model using VRoid Studio, export it as a VRM file, import it into Unity, and apply Mixamo animations. We’ll follow these steps: Model creation — create a model in VRoid Studio and export it File conversion — use Blender to convert VRM to FBX Import into Unity Import Mixamo animations Apply the animation Import the model Model Creation VRoid Studio is a free, beginner-friendly tool for quickly creating character models. ...

February 4, 2022 · 4 min · GanniPiece