I noticed that when the code generator doesn't recognize a function, it automatically prepends a this. to it. Is this necessary?
Specifically, I was trying to change a Do TileTouchingIndex into an If TileTouchingIndex, by simply choosing If from the dropdown menu and typing (bool)TileTouchingIndex manually into the box. This way, I can simply check to see if the player is touching a tile in one step instead of two. This would work, except it puts the this. before it, so it ends up as if (this.(bool)TileTouchingIndex(17, false, true)) in the code. So close.
Of course, this isn't the only use I could think of, and I'm not sure if this happens in all cases or if this is just a fluke, but the problem remains, if it does happen in all cases, if your function isn't in the list, for whatever reason, you should still be able to type it in manually and have it work, even if it's not a member of the SpriteBase class.
So, is this necessary behavior, or could it be removed?