so i found this weird bug that when i look at somthing in the script graph for example variables or multiple if statements together if they arnt in view like if im debugging a different spot in the script graph the variables wont change when im not looking at them, i dont know, weird topic but its somthing i found.
The values you see on node connections are just a visualization, and it only updates when the logic is triggered. If some other graph updates the same variable, the value you see in the first graph won’t be updated unless the logic is triggered again. And for if statements, it will display values of the last time the branch was triggered, if it hasn’t been triggered in some time, and the said variable is changed elsewhere, it won’t update automatically.
Variables window/components is where the data is held and they are always up to date. The stuff you see in graphs is just for visualization/debugging purposes and has always worked like that, so not actually a bug.