Observer Condition OR Behaviour #973
LeThaiThinh18021228
started this conversation in
Feature Request
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Observer conditions currently use AND logic. There’s no way to express “visible if condition A or condition distance,” stop once a condition has decided the result, while still keeping built-in conditions atomic and leverage them.
Proposal: Add a 4th out bool stopProcess parameter to ConditionMet.
stopProcess = true → stop pipeline immediately.
stopProcess = false → continue pipeline with AND behavior.
This way, i dont have to rewrite a new condition that combine 2 condition “visible if condition A or condition distance”. Of course, complex conditions will still require custom bulk code
Beta Was this translation helpful? Give feedback.
All reactions