Having started only recently with using GameMaker for game development (keep in mind that this is the first time in a long while that I'm doing something like this, so I'm technically at beginner level), I've lately been thinking about something that seems to be common place throughout creating a game with the software.
Through all the tutorials I've been through so far in GameMaker:Studio, I've noticed that the tutorials seem to want the names of game assets to always have a prefix in their names depending on what the game asset is, usually something like spr_ for sprites or obj_ for objects.
I've never exactly liked this sort of naming method, but I don't know whether or not to keep doing this or to just avoid using the prefix entirely. Does the engine require these prefixes for a game to compile or something?
Are these prefixes necessary?
spr_player
andobj_player
as two differently-named but easily-identifiable resources. – Niet the Dark Absol Oct 19 '15 at 20:39obj_
(or justo
) you get a list of every object that you can then navigate or filter if you don't remember a particular name. – Darkhogg Oct 19 '15 at 23:02