I see **= and >>>= in a lot of places in the documentation but any of them explain what it does.
What do these things do?
I see **= and >>>= in a lot of places in the documentation but any of them explain what it does.
What do these things do?
These are compound assignment operators.
A **= B; means A = A ** B; (** is power-of or exponent operator)
A >>>= B; means A = A >>> B; (>>> is arithmetic shift right)
AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game