Files
LNXSDK/leenkx/Sources/leenkx/logicnode/GetBoneFkIkOnlyNode.hx
2025-01-22 16:18:30 +01:00

37 lines
740 B
Haxe

package leenkx.logicnode;
import iron.object.Object;
#if lnx_skin
import iron.object.BoneAnimation;
#end
class GetBoneFkIkOnlyNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function get(from: Int): Bool {
#if lnx_skin
var object: Object = inputs[0].get();
var boneName: String = inputs[1].get();
if (object == null) return null;
var anim = object.animation != null ? cast(object.animation, BoneAnimation) : null;
if (anim == null) anim = object.getBoneAnimation(object.uid);
// Get bone in armature
var bone = anim.getBone(boneName);
//Get bone transform in world coordinates
return bone.is_ik_fk_only;
#else
return null;
#end
}
}