If I were doing this in javascript, i'd have a condition after those two like so:
if (this.Hovered != this.LastHovered) {
// Do Stuff
}
How would I replicate this comparison as a condition?
You can use the system condition "evaluate expression" and use variableA=1 & VariableB=1 or any combination of true or false.
For the boolean state 1 is true & 0 is false.
**EDIT sorry read to quick. You want Evaluate Expression (A=1 & B=0) | (A=0& B=1) that will give you not equals to for your booleans