This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CroneEngine_PolyTemplate | |
// | |
// v1.0.0 Mark Eats | |
Engine_PolyTemplate : CroneEngine { | |
classvar maxNumVoices = 3; | |
var voiceGroup; | |
var voiceList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Poly Template | |
-- | |
-- v1.0.2 Mark Eats | |
-- | |
local MusicUtil = require "musicutil" | |
engine.name = "PolyTemplate" | |
local midi_in_device |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Framerate Test | |
-- | |
local SCREEN_FRAMERATE = 15 | |
local counter = 1 | |
function init() | |
local screen_refresh_metro = metro.init() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Hello Passersby | |
-- 1.1.1 @markeats | |
-- | |
-- Passersby demo script. | |
-- | |
local Passersby = require "passersby/lib/passersby_engine" | |
local MusicUtil = require "musicutil" | |
engine.name = "Passersby" |