#Where are the values coming from on the
1 messages · Page 1 of 1 (latest)
The values going into Append or the integer compare? Regardless, if I am printing the greaterThan compare shouldnt it match the branch outcome every time if it is only getting printed once?
The ingegers, yes. Where are you pulling them from?
Right. here is your issue.
they are coming from my Data table being compared to an rng Int
That node you have selected, right click on it and ShowExecPins. And hook it up before the Print.
the random int in range node?
Correct
i dont have that in my right click menu
It's a pure node. Which means that for each Executed node it is connected to, it will be reran. So you run it first for the print and get a random number. Then you run it again for the branch and get a completely different random number.
Ah, are you on 5.5?
It should be there. 😦
fuck maybe im 5.4. is there any easy way to check in engine?
Ah so every time I am asking for it, regardless of how close or recent the ask is, it will print something different each ask?
Specifically once per executed node. If you hook it up to your print twice for example, it'll run once instead of twice. But your Print and Branch are two different executed nodes.
Ah so if I just promoted the outcome to a local variable then got the local variable for the print and the branch, that would be the same.