feat: Add isActive property to ArmBot state and update IKAnimationController logic

refactor: Remove commented console logs in ProcessAnimator and useProcessAnimations
This commit is contained in:
2025-04-16 18:30:43 +05:30
parent f7e4f5c580
commit 8e491a0002
4 changed files with 36 additions and 35 deletions

View File

@@ -53,7 +53,8 @@ const ArmBot = ({ armBots, setArmBots, setStaticMachines }: ArmBotProps) => {
material: "default",
triggerId: '',
actions: bot.points.actions,
connections: bot.points.connections
connections: bot.points.connections,
isActive: false
}));
setArmBots(initialStates);
}, [simulationStates, isReset]);