Skip to content

Commit

Permalink
1.7.0 real this probably works
Browse files Browse the repository at this point in the history
  • Loading branch information
Skirlez committed Jul 14, 2022
1 parent 18f73ab commit e1d9556
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 16 deletions.
2 changes: 1 addition & 1 deletion cate-bossfight-gm.yyp

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

3 changes: 2 additions & 1 deletion objects/obj_explosion/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ repeat(global.execute) {
room_goto(bonuscat)
}
}
if mouse_check_button_pressed(mb_middle) {
if mouse_check_button_pressed(mb_middle) and timer > 1 {
audio_stop_sound(snd_boom_cloud)
play_sound(snd_pluck, false)
room_goto(bonuscat)
}
Expand Down
1 change: 1 addition & 0 deletions objects/obj_explosion/obj_explosion.yy

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

6 changes: 4 additions & 2 deletions objects/obj_fullscreen/Create_0.gml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
if os_browser != browser_not_a_browser {
obj_shakescreentoggle.x = 320
obj_shakescreentoggle.y = 288
obj_shakescreentoggle.x = 224
obj_visualstoggle.x = 288
obj_volumetest.x = 352
obj_scoretoggle.x = 416
instance_destroy(id)
}
1 change: 1 addition & 0 deletions objects/obj_hardmodecutscene/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ repeat(global.execute) {
}
}
if mouse_check_button_pressed(mb_middle) {
global.hard = true
change_progress(2)
room_goto(mainroom)
}
1 change: 1 addition & 0 deletions objects/obj_jinx5/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ else {
}
image_index = 0
image_angle = 0
deathtimer = 1
}

if deathtimer < 312 and deathtimer > 30 {
Expand Down
4 changes: 2 additions & 2 deletions objects/obj_manager/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ global.screenHeight = display_get_height()

draw_set_halign(fa_center)
draw_set_valign(fa_middle)
surface_resize(application_surface, global.screenWidth, global.screenHeight)


/* unused as of 1.6
if !variable_global_exists("fps")
Expand Down Expand Up @@ -50,4 +50,4 @@ stoptiming = false
global.hp = 1
currentjinx = -1
global.version = "v1.7.0"
global.misses = 0
global.misses = 0
3 changes: 1 addition & 2 deletions objects/obj_manager/Draw_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ if paused == false {
}
*/


/*
if keyboard_check_pressed(ord("Q"))
object.hp = 0
Expand Down Expand Up @@ -78,7 +77,7 @@ if paused == false {
if global.attackcooldown > 0 {
draw_sprite(spr_varframe, 0, 320, 50)
if instance_exists(obj_jinx7.summon)
draw_text(320, 50, obj_jinx7.summon.hp)
draw_text(320, 50, obj_jinx7.summon.hp)
else
draw_text(320, 50, obj_jinx7.hp)
}
Expand Down
8 changes: 6 additions & 2 deletions objects/obj_manager/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ repeat(global.execute) {
if os_browser != browser_not_a_browser {
global.screenWidth = display_get_width()
global.screenHeight = display_get_height()
window_set_size(global.screenWidth, global.screenHeight)

if global.screenWidth != window_get_width() or global.screenHeight != window_get_height() {
window_set_size(global.screenWidth, global.screenHeight)
surface_resize(application_surface, global.screenWidth, global.screenHeight)
}
}
camera_set_view_pos(view_camera[0], 0, 0)
if global.shake > 0 {
Expand Down Expand Up @@ -265,7 +269,7 @@ if paused == false {
whitescreencolor = c_white
}
else if finaletimer == 222 {
obj_jinx7.go = true
obj_jinx7.go = true
change_progress(3)
stoptiming = false
cattime = 0
Expand Down
File renamed without changes.
File renamed without changes.

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

4 changes: 2 additions & 2 deletions rooms/bonusend/bonusend.yy

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

2 changes: 1 addition & 1 deletion rooms/mainroom/mainroom.yy

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

4 changes: 2 additions & 2 deletions rooms/title/title.yy

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

0 comments on commit e1d9556

Please sign in to comment.