Whoa, did not see that overload :P
Yes, I guess I'll be able to make do with this.
But with this the entry and exit actions are still executed. In my
case they don't do much, but in case they do it's an overhead.
Don't know if you still develop the library, but, well, something to
think about.
Anyways thanks, great library :)
On Dec 24, 6:42 am, Nicholas Blumhardt <
nicholas.blumha...@gmail.com>
wrote:
> Have you looked at the overload of OnEntry() that provides the transition?
> You might be able to use it to only execute certain actions when not
> performing a self-transition:
>
> .OnEntry(t => {
> if (t.Source != someState) {
> // etc.
> }
>
> });
>
> Hope this helps!
> Nick
>