XNA/C# Tutorial - How to make a basic tile map editor - Part 1
Loading...
6,212
Loading...
Uploader Comments (MrDeathNote1988)
see all
All Comments (6)
-
why didnt you use at the if(hover)...... the conditional operator, it would have taken only one line ;)
-
good tutorial
-
@Eatitup86 The bit-wise operator | sets the bit to 1 if either of the results are 1. IE
1001
1100
would be
1101
-
Awesome tutorial, thanks so much :)
Loading...
What does the following statement do?:
prevClicked = prevClicked || clicked;
Does it always choose the one that is currently True?
Eatitup86 1 year ago
@Eatitup86 it sets prevClicked to true if clicked or prevClicked is true.
MrDeathNote1988 1 year ago