#Where are the values coming from on the

1 messages · Page 1 of 1 (latest)

hushed skiff
#

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?

vestal star
#

The ingegers, yes. Where are you pulling them from?

hushed skiff
vestal star
#

Right. here is your issue.

hushed skiff
#

they are coming from my Data table being compared to an rng Int

vestal star
#

That node you have selected, right click on it and ShowExecPins. And hook it up before the Print.

hushed skiff
#

the random int in range node?

vestal star
#

Correct

hushed skiff
vestal star
#

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?

hushed skiff
#

wait

vestal star
#

It should be there. 😦

hushed skiff
#

fuck maybe im 5.4. is there any easy way to check in engine?

hushed skiff
vestal star
#

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.

hushed skiff
#

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.

vestal star
#

Correct.

#

5.5 makes this nice with the ShowExecPins, but saving it to a local variable also works.