37 |
scr_sme_yellow_rhythm_song_data_danzascr_sme_yellow_rhythm_song_data_danzafunction scr_sme_yellow_rhythm_song_data_danza(argument0, argument1, argument2, argument3, argument4) //gml_Script_scr_sme_yellow_rhythm_song_data_danza
{
if (argument0 == undefined)
argument0 = mus_danza_attack_inst_01_yellow
if (argument1 == undefined)
argument1 = false
if (argument2 == undefined)
argument2 = false
if (argument3 == undefined)
argument3 = 2
if (argument4 == undefined)
argument4 = [520, 517, 514]
can_end_script = true
var sound = array_create(array_length(argument1), 0)
for (var i = 0; i < array_length(sound); i++)
sound[i] = argument4[argument2[i]]
scr_audio_stop_sound(1)
audio_play = argument0
audio_sound_gain(audio_play, 1, 0)
audio_sound_pitch(audio_play, 1)
audio_play_sound(audio_play, 20, false)
note_1second = 30
note_speed_denominator = 30 * argument3
note_speed = note_speed_numerator / note_speed_denominator
note_current = 0
note_time = 0
note_add = 0
note_total = array_length(argument1)
note_final = false
if (song_play_ct == 0)
timeline = timeline_add()
else if (!timeline_exists(timeline))
timeline = timeline_add()
else
timeline_clear(timeline)
note_time = argument1[0] * note_1second - note_speed_denominator
note_sarray[0] = sound[0]
note_parray[0] = argument2[0]
timeline_moment_add_script(timeline, note_time, gml_Script_scr_sme_yellow_rhythm_create_note)
for (i = 1; i < array_length(argument1); i++)
{
note_add = (argument1[i] - (argument1[(i - 1)])) * note_1second
note_time += note_add
note_sarray[i] = sound[i]
note_parray[i] = argument2[i]
timeline_moment_add_script(timeline, note_time, gml_Script_scr_sme_yellow_rhythm_create_note)
}
timeline_index = timeline
timeline_loop = false
timeline_speed = 1
timeline_position = 0
timeline_running = true
song_play_ct += 1
} (mus_danza_attack_inst_finale_02_yellow, other.finale_chart[0], other.finale_chart[1], 1.2, [521, 518, 515]) |