Skip to content

Commit 4de03a2

Browse files
committed
2024_01_26
game develop engine updated minor bug fixed etc.
1 parent bd1e949 commit 4de03a2

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

objects/code/Create_0.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// @description Insert description here
22
// You can write your code in this editor
3-
global.version_real = 1.07;
3+
global.version_real = 1.08;
44
global.version = "Release "+string(global.version_real);
55
global.beta_tester = 0;
66
global.streamer = 0;

objects/code/KeyPress_8.gml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/// @description Insert description here
2+
// You can write your code in this editor
3+
if (keyboard_virtual_status() == true || keyboard_lastkey == vk_enter)
4+
{
5+
keyboard_virtual_hide()
6+
}
7+
8+
9+
10+
11+
12+
13+

objects/code/Step_1.gml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -371,19 +371,13 @@ if (global.b_alpha < 0.1 && global.t_b_alpha <= 0 && global.t_b_alpha != -0.02 &
371371
check_new_song ++;
372372

373373

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

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

380-
global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 복사 기능 추가";
381-
check_new_song ++;
382-
383-
global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 파라미터 값 (크기, 이동 속도...) 관련 버그 수정";
384-
check_new_song ++;
385-
386-
global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 디폴트 값 관련 버그 수정";
380+
global.unlocked_music_name_new_list[check_new_song] = "커스텀 맵 탄막 이미지 변경 메시지 관련 일부 사항 수정";
387381
check_new_song ++;
388382

389383
global.unlocked_music_name_new_list[check_new_song] = "(이외에 제보 주신 버그들은 수정 중에 있습니다!)";

objects/code/code.yy

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

objects/map_edior_ui/Step_0.gml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ if (custom_image_type == 0)
132132
var tmp_spr__ = global.custom_proj_center_spr[custom_image_ind];
133133
if (sprite_exists(tmp_spr__) && sprite_index != tmp_spr__)
134134
{
135+
clean_message_log();
135136
show_message_log("이미지 변경 중 - "+string(custom_image_ind));
136137
sprite_index = tmp_spr__;
137138
with(code)
@@ -145,6 +146,7 @@ else if (custom_image_type == 1)
145146
var tmp_spr__ = global.custom_proj_top_spr[custom_image_ind];
146147
if (sprite_exists(tmp_spr__) && sprite_index != tmp_spr__)
147148
{
149+
clean_message_log();
148150
show_message_log("이미지 변경 중 - "+string(custom_image_ind));
149151
sprite_index = tmp_spr__;
150152
with(code)

objects/obj_player/Other_10.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ n_max_map_speed = (n_max_map_speed > 28) ? 28 : n_max_map_speed;
99
global.dashing = 1
1010
var tmp = (3600/global.bpm);
1111
tmp = (tmp <= 20) ? tmp*2 : tmp;
12-
global.dash_cooltime = fix_num_inside(tmp-10-global.dash_dec_c_time-n_max_map_speed*0.4,15,999);
12+
global.dash_cooltime = fix_num_inside(tmp+20-global.dash_dec_c_time-n_max_map_speed*0.4,15,999);
1313

14-
var inv_cooltime = global.dash_cooltime;
14+
var inv_cooltime = global.dash_cooltime-10;
1515
//show_message_log(inv_cooltime)
1616
if (invincibility_cooltime < inv_cooltime)
1717
{

0 commit comments

Comments
 (0)