How to use the osc.timeTag function in osc

To help you get started, we’ve selected a few osc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ChadMcKinney / Lich.js / Soliton.js / SuperCollider.js View on Github external
_Server.prototype.scheduleMsg = function(secondsFromNow, address, args) {

	this.udp.send({
		timeTag: osc.timeTag(secondsFromNow),
		packets: [{
			address: address,
			args: args
		}]
	}, this.options.sHost, this.options.sPortNum);
}