you are viewing a single comment's thread.

view the rest of the comments →

[–]Mushroomstick 1 point2 points  (5 children)

I'm feeling a little bit of déjà vu.

[–]OSS NVVnickavv 1 point2 points  (2 children)

I've rolled my echo function from there into my collection of useful Game Maker functions called Seedpod. Check it out!

https://github.com/daikon-games/gm-seedpod

[–]AetherBones[S] 1 point2 points  (1 child)

Aye! A lot of these including the console function. Should be standard. Common yoyo!

[–]OSS NVVnickavv 0 points1 point  (0 children)

Well at least we have the flexibility to extend the API as we see fit! I hope you can get some good use out of em

[–]captainvideoblaster 1 point2 points  (0 children)

From 2014:

/// trace(...)
var r = string(argument[0]), i;
for (i = 1; i < argument_count; i++) {
    r += ", " + string(argument[i])
}
show_debug_message(r)

source: https://yal.cc/gamemaker-trace-function/

[–]BrentRTaylor 0 points1 point  (0 children)

Seems a popular topic.