What is the "!=" node in a Blueprint?

i was following the day/night cycle tutorial and the guy uses this

i have no clue what its used for and how to get it?

It’s “Not equal” comparison. Left and right pins are boolean ( true or false). It returns true when both variables from the left side are not equal, for example:

  • PIN1 - false
  • PIN2 - true

Output - true

But if both variables from the left side are the same (both true OR both false) then it returns false

In pseudocode you could write it as:

if( pin1 != pin2 ){
  // both variables are different
  // so let's do something
}

oh and this one? http://tinypic.com/view.php?pic=jal24l&s=8#.U05ri1eotAc

ah thanks! and the second one? ( its in the comments )

I think it’s “multiply”. It multiplies all values from the left side and gives output to right. Does it give any tooltip when you hover your mouse on it?

Yup, I’ve left a comment there :slight_smile: Please mark my answer as your solution if that was what you needed to know.

ah its a multiply block yes thanks

Japanese Translation