Polyend Tracker Library - v0.1.1
    Preparing search index...

    Interface ProjectData

    Represents the data structure for a project.

    ℹ️ There is no need to create this yourself. Use Tracker.createProject instead.

    interface ProjectData {
        header: ProjectHeader;
        projectName: string;
        song: SongData;
        values: MtValues;
    }
    Index

    Properties

    Metadata for the project.

    projectName: string

    The name of the project. Max 32 characters.

    song: SongData

    Contains song structure and last active pattern index.

    values: MtValues

    Represents various parameters / attributes within the project (Delay, Reverb, Tempo, Tracknames).