-
Here's the pertinent part of the definition: assigning: {
initial: "rolling",
states: {
rolling: {
entry: [rollDice],
always: ["waiting"],
},
waiting: {
on: {
ASSIGN: "processing"
}
},
processing: {
entry: [assignDie],
always: [
{
target: "..resolving",
cond: "searchFull"
},
{
target: "waiting",
cond: "stillDice",
},
{
target: "rolling",
}
]
}
}
},
resolving: {
entry: [(context, event) => {console.log("Made it!");}],
}, Everything is working until I try to transition to Thanks for your time! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You might be interested in the discussion happening below this PR: #1246 |
Beta Was this translation helpful? Give feedback.
..
is not a valid specifier. You currently can't transition to a sibling of a parent node using any kind of relative paths.You might be interested in the discussion happening below this PR: #1246