:D
This commit is contained in:
commit
09ade10207
117 changed files with 2153 additions and 0 deletions
28
eastern flames/scripts/vlambeer/vlambeer.gml
Normal file
28
eastern flames/scripts/vlambeer/vlambeer.gml
Normal 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
|
||||
}
|
||||
}
|
||||
|
12
eastern flames/scripts/vlambeer/vlambeer.yy
Normal file
12
eastern flames/scripts/vlambeer/vlambeer.yy
Normal 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",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue