:D
This commit is contained in:
commit
09ade10207
117 changed files with 2153 additions and 0 deletions
21
eastern flames/scripts/log/log.gml
Normal file
21
eastern flames/scripts/log/log.gml
Normal file
|
@ -0,0 +1,21 @@
|
|||
///@function log(data[...]);
|
||||
function log() {
|
||||
var r = string(argument[0]), i;
|
||||
for (i = 1; i < argument_count; i++) {
|
||||
r += ", " + string(argument[i]);
|
||||
}
|
||||
var stack = debug_get_callstack(10);
|
||||
//show_debug_message(stack);
|
||||
show_debug_message(string(current_time) + " : " + string(stack[1]) + " : " + r);
|
||||
var p = new consoleEntry(r,c_black);
|
||||
}
|
||||
/*
|
||||
var a = {};
|
||||
for(var i = 0; i < 24; i++){
|
||||
a[$i] = i;
|
||||
}
|
||||
|
||||
for(var i = 0; i < 24; i++){
|
||||
log(a[$i]);
|
||||
}*/
|
||||
//log(a[$4])
|
12
eastern flames/scripts/log/log.yy
Normal file
12
eastern flames/scripts/log/log.yy
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"isDnD": false,
|
||||
"isCompatibility": false,
|
||||
"parent": {
|
||||
"name": "convenience",
|
||||
"path": "folders/Scripts/convenience.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "log",
|
||||
"tags": [],
|
||||
"resourceType": "GMScript",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue