if (!_root.land.hitTest(_x+x, _y+y, true))
..is the code I need help with. I essentially took this code from another program. I am an intermediate c++ programmer but new to AS.
Heres my question
What does the following code do..
" (_x+x, _y+y, true) "
in this statement..
if (!_root.land.hitTest(_x+x, _y+y, true))
Note:
So this code is in a MC. Pseudocode as follows:
if this MC is not hitting another MC with instance name 'land' and..this.. (_x+x, _y+y, true)??...
Then do whats in the curley braces following the statement.