Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

GMEdit

A high-end code editor for all things GameMaker · By YellowAfterlife

Way to list all variables?

A topic by TsukiruP created Jul 15, 2023 Views: 243 Replies: 2
Viewing posts 1 to 2
(1 edit)

Is there any way to list all custom variables? I want to do a find and replace to make my names consistent but couldn't find anything like that in the shortcuts or searching. I could've very easily missed something though. Editing GMS1.4 projects.

Developer

You can open the console (Ctrl+Shift+I, and switch to Console) and run the following there:

Object.keys(GmlAPI.gmlInstFieldMap)

this will show everything that auto-completion knows about.

Just what I needed, thank you!