MCPcopy Create free account
hub / github.com/Code-Bullet/Jump-King / Cue

Function Cue

libraries/p5.dom.js:2123–2128  ·  view source on GitHub ↗
(callback, time, id, val)

Source from the content-addressed store, hash-verified

2121 // Cue inspired by JavaScript setTimeout, and the
2122 // Tone.js Transport Timeline Event, MIT License Yotam Mann 2015 tonejs.org
2123 var Cue = function(callback, time, id, val) {
2124 this.callback = callback;
2125 this.time = time;
2126 this.id = id;
2127 this.val = val;
2128 };
2129
2130// =============================================================================
2131// p5.File

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected