:D
This commit is contained in:
commit
09ade10207
117 changed files with 2153 additions and 0 deletions
31
eastern flames/objects/o_flash/o_flash.yy
Normal file
31
eastern flames/objects/o_flash/o_flash.yy
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"spriteId": null,
|
||||
"solid": false,
|
||||
"visible": true,
|
||||
"spriteMaskId": null,
|
||||
"persistent": false,
|
||||
"parentObjectId": null,
|
||||
"physicsObject": false,
|
||||
"physicsSensor": false,
|
||||
"physicsShape": 1,
|
||||
"physicsGroup": 1,
|
||||
"physicsDensity": 0.5,
|
||||
"physicsRestitution": 0.1,
|
||||
"physicsLinearDamping": 0.1,
|
||||
"physicsAngularDamping": 0.1,
|
||||
"physicsFriction": 0.2,
|
||||
"physicsStartAwake": true,
|
||||
"physicsKinematic": false,
|
||||
"physicsShapePoints": [],
|
||||
"eventList": [],
|
||||
"properties": [],
|
||||
"overriddenProperties": [],
|
||||
"parent": {
|
||||
"name": "vlambeer",
|
||||
"path": "folders/Scripts/drawing/vlambeer.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "o_flash",
|
||||
"tags": [],
|
||||
"resourceType": "GMObject",
|
||||
}
|
3
eastern flames/objects/o_screenshake/Create_0.gml
Normal file
3
eastern flames/objects/o_screenshake/Create_0.gml
Normal file
|
@ -0,0 +1,3 @@
|
|||
/// @description Insert description here
|
||||
// You can write your code in this editor
|
||||
count = 0;
|
14
eastern flames/objects/o_screenshake/Step_0.gml
Normal file
14
eastern flames/objects/o_screenshake/Step_0.gml
Normal file
|
@ -0,0 +1,14 @@
|
|||
/// @description Insert description here
|
||||
// You can write your code in this editor
|
||||
if(count > length){
|
||||
instance_destroy();
|
||||
}
|
||||
else{
|
||||
var camx = camera_get_view_x(view_camera[0]);
|
||||
var camy = camera_get_view_y(view_camera[0]);
|
||||
var range = amplitude - amplitude*(count/length);
|
||||
camx += random_range(-range,range);
|
||||
camy += random_range(-range,range);
|
||||
camera_set_view_pos(view_camera[0],camx,camy);
|
||||
}
|
||||
count++;
|
34
eastern flames/objects/o_screenshake/o_screenshake.yy
Normal file
34
eastern flames/objects/o_screenshake/o_screenshake.yy
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"spriteId": null,
|
||||
"solid": false,
|
||||
"visible": true,
|
||||
"spriteMaskId": null,
|
||||
"persistent": false,
|
||||
"parentObjectId": null,
|
||||
"physicsObject": false,
|
||||
"physicsSensor": false,
|
||||
"physicsShape": 1,
|
||||
"physicsGroup": 1,
|
||||
"physicsDensity": 0.5,
|
||||
"physicsRestitution": 0.1,
|
||||
"physicsLinearDamping": 0.1,
|
||||
"physicsAngularDamping": 0.1,
|
||||
"physicsFriction": 0.2,
|
||||
"physicsStartAwake": true,
|
||||
"physicsKinematic": false,
|
||||
"physicsShapePoints": [],
|
||||
"eventList": [
|
||||
{"isDnD":false,"eventNum":0,"eventType":0,"collisionObjectId":null,"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",},
|
||||
{"isDnD":false,"eventNum":0,"eventType":3,"collisionObjectId":null,"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",},
|
||||
],
|
||||
"properties": [],
|
||||
"overriddenProperties": [],
|
||||
"parent": {
|
||||
"name": "vfx-likes",
|
||||
"path": "folders/Objects/vfx-likes.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "o_screenshake",
|
||||
"tags": [],
|
||||
"resourceType": "GMObject",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue