Skip to content

Commit

Permalink
Global Game Jam 2020 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoshoDev committed Feb 2, 2020
1 parent 3a8c83b commit 95cb9a0
Show file tree
Hide file tree
Showing 9 changed files with 93 additions and 3 deletions.
Binary file added Artwork/Sprites_Alt.fla
Binary file not shown.
8 changes: 8 additions & 0 deletions Project/Chiro/Chiro.yyp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Project/Chiro/objects/obj_menu1/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ if (audio_is_playing(snd_calm))
audio_stop_sound(snd_calm);

if (!audio_is_playing(snd_menu))
audio_play_sound(snd_menu, irandom_range(0, 99), false);
audio_play_sound(snd_menu, irandom_range(0, 99), false);

add = 0;
title_y = 0;
6 changes: 5 additions & 1 deletion Project/Chiro/objects/obj_menu1/Draw_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,8 @@ if (menu_option != op.none)
}
}

draw_sprite_ext(spr_title, 0, room_width*0.7, room_height/2, 1, 1, image_angle, image_blend, image_alpha);
add++;
title_y = room_height/2 + cos(add/120)*200;
var angle = cos(add/45)*30;

draw_sprite_ext(spr_title, 0, room_width*0.7, title_y, 1, 1, angle, image_blend, image_alpha);
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ switch(joint_section)
spr = spr_hand_3;
else if (global.holup)
spr = spr_hand_2;
else if (global.ending)
spr = spr_hand_4;
else
spr = spr_hand_1;

Expand All @@ -29,6 +31,8 @@ switch(joint_section)
spr = spr_hand_3;
else if (global.holup)
spr = spr_hand_2;
else if (global.ending)
spr = spr_hand_4;
else
spr = spr_hand_1;

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 70 additions & 0 deletions Project/Chiro/sprites/spr_hand_4/spr_hand_4.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Project/Chiro/views/22cdd265-93bd-48e1-8f80-d287f93386e0.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 95cb9a0

Please sign in to comment.