-
Notifications
You must be signed in to change notification settings - Fork 395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ability to re-order conditions #565
Comments
Hi and thank you for your feddback. The order of the image conditions cannot be changed because there is no impact on the result (besides computation optimization, but that's overkill). If we only take the result of a boolean operation into consideration, A & B & C == C & A & B and A | B | C == C | B | A Closed as won't do |
Right on, fwiw in an image match with like 20 OR conditions it does seem to
pick the first match, ex in a card game if I have a trigger for the Ace the
King And the queen in that order, and then click on the detected condition,
it's going to pick the Ace every time
…On Thu, Jan 16, 2025, 6:09 AM Nain57 ***@***.***> wrote:
Hi and thank you for your feddback.
The order of the image conditions cannot be changed because there is no
impact on the result (besides computation optimization, but that's
overkill). If we only take the result of a boolean operation into
consideration, A & B & C == C & A & B and A | B | C == C | B | A
Closed as won't do
—
Reply to this email directly, view it on GitHub
<#565 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BLFEQP53B2EANJCQDQZK42L2K6HOPAVCNFSM6AAAAABS75MNBWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOJVGIZTGNZVGM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Ah yes, thanks for the precision. Now I see the usage, i will re open the ticket. Can you update it to clarifie it ? You want to reorder the condition list in order to control which condition to click on when multiple condition are matched. |
Yes thank you! thats exactly what I'm looking for, I want to reorder the condition list in order to control which condition to click when multiple condition are matched. thank you for all your awesome work!! |
Implementation of Feature Request #565
Describe the feature
I would love a way to re-order screen conditions inside of an event, it seems like the only way to do this now is to wait for the events to show up in the right order and add them in that way which can be very challenging / time consuming
Describe the usage
I'm using the order of conditions to simulate a sort of decision tree, but if I want to change that logic I have to drop conditions and recreate them in the right order
Is it a duplicate?
The text was updated successfully, but these errors were encountered: