Try This




view rawsimpleskulpt.html hosted with ❤ by GitHub Using Custom Modules This new feature lets you create and host your own modules for use in Skulpt. The following gist shows how to include one of them in a page. Customizing modules after import If you want to customize how a module behaves you can use the ``onAfterImport`` hook. Here is a gist of how the trinket guys do it. Sk.onAfterImport = function(library) { switch(library) { case 'pygal': // make charts render instantly Highcharts.setOptions({ plotOptions: { series: { animation: false } } }); break; case 'turtle': // make turtle draw instantly Sk.tg.defaults.animate = false; Sk.tg.Turtle.prototype.speed = function() {} Sk.tg.Turtle.prototype.delay = function() {} break; } }