Skip to content

Instantly share code, notes, and snippets.

View kirby's full-sized avatar

Kirby Shabaga kirby

View GitHub Profile
@kirby
kirby / PlayerVolumeUp.js
Last active March 3, 2019 02:52
Sumerian - YouTubeAPI - PlayerVolumeUp
'use strict';
function enter(args, ctx) {
if (ctx.worldData.player.getVolume() <= 95) {
ctx.worldData.player.setVolume(ctx.worldData.player.getVolume() + 5);
}
console.log('playerVolume = ' + ctx.worldData.player.getVolume());