Add "interactive" tutorial for first level

This commit is contained in:
tobspr 2020-06-01 21:14:12 +02:00
parent 91351d2f79
commit cef07dec56
21 changed files with 274 additions and 22 deletions

View file

@ -189,7 +189,7 @@ function serve({ standalone }) {
gulp.watch("../res_built/atlas/*.json", ["imgres.atlas"]);
// Watch the build folder and reload when anything changed
const extensions = ["html", "js", "png", "jpg", "svg", "mp3", "ico", "woff2", "json"];
const extensions = ["html", "js", "png", "gif", "jpg", "svg", "mp3", "ico", "woff2", "json"];
gulp.watch(extensions.map(ext => path.join(buildFolder, "**", "*." + ext))).on("change", function (e) {
return gulp.src(e.path).pipe(browserSync.reload({ stream: true }));
});