This commit is contained in:
the me 2022-08-07 14:14:04 -07:00
commit 09ade10207
117 changed files with 2153 additions and 0 deletions

View file

@ -0,0 +1,28 @@
// Script assets have changed for v2.3.0 see
// https://help.yoyogames.com/hc/en-us/articles/360005277377 for more information
function c_screenshake(_amplitude,_length){
if(_amplitude == infinity){
_amplitude = 1000
}
with(instance_create(0,0,o_screenshake)){
length = _length;
amplitude = _amplitude;
}
}
function c_hitpause(mstime){
var initialtime = get_timer();
while(true){
if(initialtime+(mstime*1000) < get_timer()){
return;
}
}
}
///flash(surface, duration, colour);
function c_flash(_surface/*:surface*/, _duration/*:number*/, _color/*:any*/){
with(instance_create(0,0,o_flash)){
surface = other._surface;
duration = other._duration;
color = other._color
}
}

View file

@ -0,0 +1,12 @@
{
"isDnD": false,
"isCompatibility": false,
"parent": {
"name": "vlambeer",
"path": "folders/Scripts/drawing/vlambeer.yy",
},
"resourceVersion": "1.0",
"name": "vlambeer",
"tags": [],
"resourceType": "GMScript",
}