<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Motion Capture on GameSweetGame</title><link>https://gamesweetgame.com/tags/motion-capture/</link><description>Recent content in Motion Capture on GameSweetGame</description><generator>Hugo -- gohugo.io</generator><language>ko</language><lastBuildDate>Tue, 20 Jan 2026 12:00:00 +0900</lastBuildDate><atom:link href="https://gamesweetgame.com/tags/motion-capture/index.xml" rel="self" type="application/rss+xml"/><item><title>Edit Game Animations with Blender and Mixamo Rig</title><link>https://gamesweetgame.com/en/posts/game-animation-custom-edit/</link><pubDate>Tue, 20 Jan 2026 12:00:00 +0900</pubDate><guid>https://gamesweetgame.com/en/posts/game-animation-custom-edit/</guid><description>&lt;p&gt;I previously applied motion capture poses to a model, but they looked a bit awkward.&lt;/p&gt;
&lt;p&gt;(&lt;a class="link" href="https://gamesweetgame.com/en/posts/motion-capture-to-game/" &gt;Previous post: Applying Custom Animations to Your Game&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s edit the animation in Blender.&lt;/p&gt;
&lt;p&gt;After struggling with building bone controllers from scratch, I found something great — the &lt;a class="link" href="https://extensions.blender.org/add-ons/mixamo-rig/" target="_blank" rel="noopener"
 &gt;Mixamo Rig addon&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img alt="Control rig created" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px"&gt;&lt;/p&gt;
&lt;p&gt;With just one click, a control rig was generated. Easy.&lt;/p&gt;</description></item><item><title>Applying Custom Motion Capture Animations to Your Game</title><link>https://gamesweetgame.com/en/posts/motion-capture-to-game/</link><pubDate>Tue, 20 Jan 2026 11:00:00 +0900</pubDate><guid>https://gamesweetgame.com/en/posts/motion-capture-to-game/</guid><description>&lt;p&gt;I want to make a polished action game. Let&amp;rsquo;s custom-make the attack animations.&lt;/p&gt;
&lt;p&gt;I referenced this motion capture project on GitHub:&lt;/p&gt;
&lt;p&gt;&lt;a class="link" href="https://github.com/SAKTHIVINASH2/3D-Motion-Capture-From-Video" target="_blank" rel="noopener"
 &gt;GitHub - 3D Motion Capture From Video&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Using a Python pose estimation library, you can extract keypoint coordinates for head, shoulders, arms, legs, etc. These coordinates are then converted for use in Unity.&lt;/p&gt;
&lt;h2 id="overall-flow"&gt;Overall Flow
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;External pose data (33 keypoints)&lt;/li&gt;
&lt;li&gt;Convert to Unity coordinate system&lt;/li&gt;
&lt;li&gt;Point objects (P0~P32)&lt;/li&gt;
&lt;li&gt;Estimate rotation relative to bind direction&lt;/li&gt;
&lt;li&gt;Root direction (yaw + slight tilt) estimation with smoothing&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="normalizing-file-values--axis-correction"&gt;Normalizing File Values + Axis Correction
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-csharp" data-lang="csharp"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;float&lt;/span&gt; px = &lt;span style="color:#66d9ef"&gt;float&lt;/span&gt;.Parse(toks[i * &lt;span style="color:#ae81ff"&gt;3&lt;/span&gt; + &lt;span style="color:#ae81ff"&gt;0&lt;/span&gt;]) / scaleXY;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;float&lt;/span&gt; py = &lt;span style="color:#66d9ef"&gt;float&lt;/span&gt;.Parse(toks[i * &lt;span style="color:#ae81ff"&gt;3&lt;/span&gt; + &lt;span style="color:#ae81ff"&gt;1&lt;/span&gt;]) / scaleXY;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;float&lt;/span&gt; pz = &lt;span style="color:#66d9ef"&gt;float&lt;/span&gt;.Parse(toks[i * &lt;span style="color:#ae81ff"&gt;3&lt;/span&gt; + &lt;span style="color:#ae81ff"&gt;2&lt;/span&gt;]) / scaleZ;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;
&lt;li&gt;Different XY/Z scales: Video-based pose estimation has much more noise in depth (Z)&lt;/li&gt;
&lt;li&gt;invertZ: Corrects coordinate system difference between MediaPipe and Unity&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="storing-bind-rotation"&gt;Storing Bind Rotation
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-csharp" data-lang="csharp"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;lUpperBind = lUpperArm.rotation;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Reference rotation from the T-Pose.&lt;/p&gt;
&lt;h2 id="automatic-bind-direction-estimation"&gt;Automatic Bind Direction Estimation
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-csharp" data-lang="csharp"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;lUpperBindDir = (lLowerArm.position - lUpperArm.position).normalized;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The core concept: &lt;strong&gt;which direction was this bone originally facing?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;UpperArm → LowerArm direction = &lt;strong&gt;bone&amp;rsquo;s reference forward vector&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt="Motion capture result" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px"&gt;&lt;/p&gt;
&lt;p&gt;A bit rough, but the motion came through. Now it&amp;rsquo;s time to refine it in Blender.&lt;/p&gt;</description></item></channel></rss>