Skip to content

Commit

Permalink
2024_01_26
Browse files Browse the repository at this point in the history
game develop engine updated
minor bug fixed
etc.
  • Loading branch information
ABER1047 committed Jan 26, 2024
1 parent bd1e949 commit 4de03a2
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
2 changes: 1 addition & 1 deletion objects/code/Create_0.gml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// @description Insert description here
// You can write your code in this editor
global.version_real = 1.07;
global.version_real = 1.08;
global.version = "Release "+string(global.version_real);
global.beta_tester = 0;
global.streamer = 0;
Expand Down
13 changes: 13 additions & 0 deletions objects/code/KeyPress_8.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/// @description Insert description here
// You can write your code in this editor
if (keyboard_virtual_status() == true || keyboard_lastkey == vk_enter)
{
keyboard_virtual_hide()
}







12 changes: 3 additions & 9 deletions objects/code/Step_1.gml
Original file line number Diff line number Diff line change
Expand Up @@ -371,19 +371,13 @@ if (global.b_alpha < 0.1 && global.t_b_alpha <= 0 && global.t_b_alpha != -0.02 &
check_new_song ++;


global.unlocked_music_name_new_list[check_new_song] = "모바일 전용 일시 정지 버튼 추가";
global.unlocked_music_name_new_list[check_new_song] = "대쉬 무적 판정 시간 관련 버그 수정";
check_new_song ++;

global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 타임라인 버그 수정";
global.unlocked_music_name_new_list[check_new_song] = "모바일 닉네임 입력 관련 일부 사항 수정";
check_new_song ++;

global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 복사 기능 추가";
check_new_song ++;

global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 파라미터 값 (크기, 이동 속도...) 관련 버그 수정";
check_new_song ++;

global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 디폴트 값 관련 버그 수정";
global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 이미지 변경 메시지 관련 일부 사항 수정";
check_new_song ++;

global.unlocked_music_name_new_list[check_new_song] = "(이외에 제보 주신 버그들은 수정 중에 있습니다!)";
Expand Down
1 change: 1 addition & 0 deletions objects/code/code.yy

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

2 changes: 2 additions & 0 deletions objects/map_edior_ui/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ if (custom_image_type == 0)
var tmp_spr__ = global.custom_proj_center_spr[custom_image_ind];
if (sprite_exists(tmp_spr__) && sprite_index != tmp_spr__)
{
clean_message_log();
show_message_log("이미지 변경 중 - "+string(custom_image_ind));
sprite_index = tmp_spr__;
with(code)
Expand All @@ -145,6 +146,7 @@ else if (custom_image_type == 1)
var tmp_spr__ = global.custom_proj_top_spr[custom_image_ind];
if (sprite_exists(tmp_spr__) && sprite_index != tmp_spr__)
{
clean_message_log();
show_message_log("이미지 변경 중 - "+string(custom_image_ind));
sprite_index = tmp_spr__;
with(code)
Expand Down
4 changes: 2 additions & 2 deletions objects/obj_player/Other_10.gml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ n_max_map_speed = (n_max_map_speed > 28) ? 28 : n_max_map_speed;
global.dashing = 1
var tmp = (3600/global.bpm);
tmp = (tmp <= 20) ? tmp*2 : tmp;
global.dash_cooltime = fix_num_inside(tmp-10-global.dash_dec_c_time-n_max_map_speed*0.4,15,999);
global.dash_cooltime = fix_num_inside(tmp+20-global.dash_dec_c_time-n_max_map_speed*0.4,15,999);

var inv_cooltime = global.dash_cooltime;
var inv_cooltime = global.dash_cooltime-10;
//show_message_log(inv_cooltime)
if (invincibility_cooltime < inv_cooltime)
{
Expand Down

0 comments on commit 4de03a2

Please sign in to comment.