Is it possible to untrack writes to a signal?
I have a certain use case, in which I have a function called getTextBoxValue which needs to run at a particular time.
The way I control the execution of this function is by using a boolean signal called IsTriggerFieldChanged like a flag. So I set the value of this flag to be true, to execute my function.
The problem is that within the function, I need to reset the value of the flag back to false for it to work a second time. However when I set the flag to false, it triggers a re-execution of my function (IsTriggerFieldChanged) which undoes the calculated value
Input field which controls the function execution: https://pastebin.com/yhqyAUh9
The function that Im trying to run based on the flag: https://pastebin.com/PAxTtZ1Q
The way I control the execution of this function is by using a boolean signal called IsTriggerFieldChanged like a flag. So I set the value of this flag to be true, to execute my function.
The problem is that within the function, I need to reset the value of the flag back to false for it to work a second time. However when I set the flag to false, it triggers a re-execution of my function (IsTriggerFieldChanged) which undoes the calculated value
Input field which controls the function execution: https://pastebin.com/yhqyAUh9
The function that Im trying to run based on the flag: https://pastebin.com/PAxTtZ1Q
Pastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Pastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
