Open rayvburn opened 2 years ago
E.g. SitDown should not consist of MoveToGoal -> SitDown -> Sitting -> StandingUp -> Standing. A better approach would use MoveToGoal, SitDown and StandUp (separately) - user has better control over scenario execution then.
SitDown
MoveToGoal
Sitting
StandingUp
Standing
StandUp
Such a decomposition disallows creation of object-oriented tasks, e.g. actor following robot while 'talking'
E.g.
SitDown
should not consist ofMoveToGoal
->SitDown
->Sitting
->StandingUp
->Standing
. A better approach would useMoveToGoal
,SitDown
andStandUp
(separately) - user has better control over scenario execution then.