:D
This commit is contained in:
commit
09ade10207
117 changed files with 2153 additions and 0 deletions
10
eastern flames/scripts/mod_negative/mod_negative.gml
Normal file
10
eastern flames/scripts/mod_negative/mod_negative.gml
Normal file
|
@ -0,0 +1,10 @@
|
|||
function mod_negative(val, modval) {
|
||||
if val < 1 {
|
||||
while val < 0 {
|
||||
val += modval;
|
||||
}
|
||||
return val;
|
||||
} else {
|
||||
return val % modval;
|
||||
}
|
||||
}
|
12
eastern flames/scripts/mod_negative/mod_negative.yy
Normal file
12
eastern flames/scripts/mod_negative/mod_negative.yy
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"isDnD": false,
|
||||
"isCompatibility": false,
|
||||
"parent": {
|
||||
"name": "convenience",
|
||||
"path": "folders/Scripts/convenience.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "mod_negative",
|
||||
"tags": [],
|
||||
"resourceType": "GMScript",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue