mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-05-08 13:58:55 -04:00
Fix robot action ID namespacing for animation detection
This commit is contained in:
@@ -810,10 +810,10 @@ export class TrialExecutionEngine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare robot action
|
// Prepare robot action - use action.type which contains the namespaced format (plugin.actionId)
|
||||||
const robotAction: RobotAction = {
|
const robotAction: RobotAction = {
|
||||||
pluginName: plugin.name,
|
pluginName: plugin.name,
|
||||||
actionId: actionDefinition.id,
|
actionId: action.type, // e.g., "nao6-ros2.play_animation_bow"
|
||||||
parameters,
|
parameters,
|
||||||
implementation: actionDefinition.implementation,
|
implementation: actionDefinition.implementation,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user