Tone.js/gulp/fragments/test.frag

17 lines
259 B
GLSL
Raw Normal View History

2015-08-16 18:58:25 +00:00
require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
2017-03-26 18:51:25 +00:00
"Test" : "helper/Test",
"Examples" : "../examples/scripts/ExampleList"
2015-08-16 18:58:25 +00:00
},
2017-03-26 18:51:25 +00:00
shim: {
"Examples" : {
exports : "ExampleList"
}
}
2015-08-16 18:58:25 +00:00
});
require({FILES}, function(Test){
Test.run();
});