Skip to content

Commit

Permalink
DynamicBones: fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoVgr committed Feb 13, 2025
1 parent b744bf1 commit 7a8d20f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions h3d/anim/Skin.hx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ class Joint {
subs = [];
}

#if !macro
public function makeRuntimeData() {
return new h3d.scene.Skin.JointData();
}
#end
}

class DynamicJoint extends Joint {
Expand All @@ -48,9 +50,11 @@ class DynamicJoint extends Joint {
super();
}

#if !macro
public override function makeRuntimeData() {
return new h3d.scene.Skin.DynamicJointData();
}
#end
}

private class Permut {
Expand Down

0 comments on commit 7a8d20f

Please sign in to comment.