colinator27
colinator27
Break/continue statements produced by the GML compiler sometimes erroneously apply to an outer with/switch statement. Example in the following code: ``` with (any_instance_here) { a = 1 for (var i...
I recently tested putting some of the decompiled code into an actual GameMaker: Studio project to test how accurate the decompiler was. Turns out, it was REALLY accurate. I managed...
So, if you run the program, go into the sounds folder, and play mus_zz_megalovania.ogg, then you'll clearly see that it isn't Megalovania! Any idea on why this was caused/ways to...
I've noticed that sprites strangely have anti-aliasing on them. This isn't supposed to be happening... Do you have any idea of fixing this? Could it potentially be https://github.com/WarlockD/GMdsam/blob/master/GMdsam/GameMaker/ChunkTypes.cs#L276? Or is...
Is it possible for scripts like this `if(self.argument0 == "music/story.ogg"/* ([0x0071AB1C],4) */) self.song_index= 213/* ([0x0071AB28],2) */; if(self.argument0 == "music/bad.ogg"/* ([0x0071AB40],4) */) self.song_index= 214/* ([0x0071AB4C],2) */;` to not have indexes. Instead,...
It's better to see an example. The initial one I discovered with the problem has this form: ```js switch (abc) { case 123: default: foo = "bar"; break; } ```...
## Description It seems that the updater button has completely vanished from nightly/bleeding edge builds, presumably because `DEBUG` isn't being defined correctly. Not sure if we should apply this to...
## Description PR checks have been plagued with tons of warning messages at the end (at least with GitHub's beta "Unchanged files with check annotations"), so this PR aims to...
## Description This is a follow-up to https://github.com/UnderminersTeam/UndertaleModTool/pull/1870, upgrading existing built-in texture scripts to work with the changes made in that PR. Some scripts had small syntax cleanup, as I...
## Description Removes the current GML decompiler included with UndertaleModTool, replacing it with calls to the [Underanalyzer](https://github.com/UnderminersTeam/Underanalyzer) library. This is intended to drastically improve accuracy and stability on valid GML...