teaches GML (Game Maker Language) very very well.
What codings
are the its version of its GML counterpart?
For example if to do if (place_meeting(x+57,y,(100013))) in C++ is
if (meeting_at_a_place(x+57,y,instance_with_a_unique_id(100013)))
you would type something like
GML version of place_meeting:
Code: Select all
if (place_meeting(x+57,y,(100013)));
C++ version of place_meeting
Code: Select all
if (meeting_at_a_place(x+57,y,instance_with_a_unique_id(100013)))








