Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GMLive.gml

Livecoding for GameMaker: Studio / GameMaker Studio 2 · By YellowAfterlife

[Fixed in 1.0.48+] Error when using draw_set_color with specific colors

A topic by BigManSkits created May 12, 2021 Views: 139 Replies: 1
Viewing posts 1 to 2

Constantly threw errors at me for using c_dkgrey instead of c_dkgray. Stopped immediately when I used c_dkgray. Happens with c_ltgrey and c_ltgray too

Developer (1 edit)

Some of the British English constant names were only added in a recent update, which is why the extension is not aware of them yet - there is no way to support these without cutting off support for using GMLive with previous GM updates.

You can get around this by doing

live_constant_add("c_dkgrey", c_dkgrey);

in obj_gmlive’s Create event.