A downloadable Music sync editor for Windows

Download NowName your own price

A multipurpose music note synchronizer!

It works for any music project.

StatusReleased
CategoryTool
PlatformsWindows
Rating
Rated 3.5 out of 5 stars
(2 total ratings)
AuthorKing! GC
GenreRhythm
Tags2D, Friday Night Funkin' (FNF), musical, Pixel Art, song, tool

Download

Download NowName your own price

Click download now to get access to the following files:

SignalTracksEditor2.1.zip 4.2 MB

Comments

Log in with itch.io to leave a comment.

Yo, your software is great. Any tutorials on how to read the data.json? I have some difficulties understanding what's the units of "pos" :)

(1 edit)

Hello FunkyFight, I am using the STE source code to modify it and add some features, the .json data saves the position of the note in the frame, so if you want to export with seconds you have to change it in the STE Github Link but yes If you want to use frames you will have to divide the time by 60 so the code will look like this:
###Create Event###
level = load_json(path)

row1 = level.notes[0]

row1index = 0

row2 = level.notes[1]

row2index = 0

row3...

row3index...

music = audio_play_sound(music)

###Step Event###

var _audpos = audio_sound_get_track_position(global.music)

var _noteoff = the distance to destination / notes velocity

for(var i = row1index; i < array_length(row1); i++){

var _note = row1[i]

if (_note.start-_noteoff)  <=_audpos && (_note.start-_noteoff) > 0{

var _instnote = instance_create_layer(x,y,"Notes",oFallingNote)

_instnote.vel = notes velocity

row1index = i + 1

break

}

}

###Notes object###
###Create Event###

vel = 0

###Step Event###

y += vel

if y >= destination{

//do the thing you want if the note is correct

instance_destroy()

}

if y > room_height{

instance_destroy()

}

Where are the files saved?

(+3)

It looks cool, but I can't do anything as I don't understand the language.  Is there an English patch?  Thank you!

Same here.

No, but you can use the google translate or use the source code STE Github Link to modify the languaje.