Skip to main content

Notetable Dsmaintheme

Based on game build 714014 | Last updated: 2026-03-10

Overview

This script defines a static array of musical notes representing the "DS Main Theme", used for procedural music playback within the game. Each entry contains a MIDI note number and a timestamp (in seconds), forming a timeline-based sequence suitable for synchronized audio rendering. It is intended for use by music-related systems (e.g., soundscript or custom audio components) rather than direct entity component attachment.

Usage example

local ds_main_theme = require("notetable_dsmaintheme")
for i, note in ipairs(ds_main_theme) do
print(("Note %d: pitch %d at t=%.3fs"):format(i, note[1], note.t))
end

Dependencies & tags

Components used: None identified
Tags: None identified

Properties

No public properties

Main functions

Not applicable

Events & listeners

Not applicable