I’ve been looking around for this but I can’t seem to find it.
What’s coronas equivalent of (if x != y) then
I’ve tried
!= and is not
and can’t figure out what it is.
Thanks!
Tom [import]uid: 55068 topic_id: 10458 reply_id: 310458[/import]
I’ve been looking around for this but I can’t seem to find it.
What’s coronas equivalent of (if x != y) then
I’ve tried
!= and is not
and can’t figure out what it is.
Thanks!
Tom [import]uid: 55068 topic_id: 10458 reply_id: 310458[/import]
My apologies I’ve found it.
~=
Interesting! [import]uid: 55068 topic_id: 10458 reply_id: 38060[/import]
Or:
[lua]if not (x == y) then …[/lua] [import]uid: 51516 topic_id: 10458 reply_id: 38062[/import]