1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/funkin/play/event/ScriptedSongEvent.hx

17 lines
677 B
Haxe
Raw Normal View History

2023-01-23 00:55:30 +00:00
package funkin.play.event;
import funkin.play.song.Song;
import polymod.hscript.HScriptedClass;
/**
* A script that can be tied to a SongEvent.
* Create a scripted class that extends SongEvent,
* then call `super('SongEventType')` to use this.
*
* - Remember to override `handleEvent(data:SongEventData)` to perform your actions when the event is hit.
* - Remember to override `getTitle()` to return an event name that will be displayed in the editor.
* - Remember to override `getEventSchema()` to return a schema for the event data, used to build a form in the chart editor.
*/
2023-01-23 00:55:30 +00:00
@:hscriptClass
class ScriptedSongEvent extends SongEvent implements HScriptedClass {}