I'm planning a dynamic weapon system (a handful of weapon "types" with unique animations (shortsword, axe, zweihander, ...), and multiple models for each type (broken sword, nice sword, mythical, whatever)). I think a way to do this is by having the hand and the sword models separate (so ignore the zweihander now I guess 😃, trying to get my footing in 3d so just one hand for now). I have a special "weapon target" bone in my hand model, that carries all the animations, and then I just import both the sword and the hand into redot and I want to place the sword where the sword target bone is. I can currently do that just fine by running the following code on the hand skeleton update:
# Called every time the arm skeleton finishes an update
func _on_skeleton_updated():
# Find the weapon target bone
var palmId : int = $ViewPivot/arm/Armature/Skeleton3D.find_bone("weapontarget");
# Get the transform of the bone in relation to the skeleton.
var palmPos : Transform3D = $ViewPivot/arm/Armature/Skeleton3D.get_bone_global_pose(palmId);
# Transform the pose to view pivot space (all 0-trans between skeleton origin and arm)
# And apply the transform to the sword
$ViewPivot/sword.transform= $ViewPivot/arm.transform * palmPos;
I know I can get the palmId just once and store it in a global variable, but even then, calling this on every frame seems wasteful. What I think would be the best approach is if the sword could play the arm animations (and be 100% influenced by the weapon target bone). I think I could theoretically achieve this with post import scripts, but not really (if the import order can't stay the same). Another option would be to do this linking when launching the game, but tbh. at that point it seems like running the little script on each frame would be better...
All those options just feel like I am missing some more elegant inbuilt way to do this, is there one or is my goal just too weird?
The weapon target bone on the model

The effect of the script places the sword in my hand
