SideraX 670f8f798c Update readme.md vor 12 Jahren
..
.gitignore 4b41b80f1d Add Gulp for buiding babylon cross platform vor 12 Jahren
gulp-shaders.js f5abb0917c Del useless params utf8 in gulp-shader vor 12 Jahren
gulpfile.js 03b6379d25 Add name option for gulp-shaders vor 12 Jahren
package.json 4b41b80f1d Add Gulp for buiding babylon cross platform vor 12 Jahren
readme.md 670f8f798c Update readme.md vor 12 Jahren

readme.md

Build Babylon.js with Gulp

Build Babylon.js with gulp and npm (nodejs), easy and cross-platform

(Paths in this file are relative to this file location.)

How to use it

First install gulp :

npm install -g gulp

Install some dependencies :

npm install

Update gulpfile if you want to add files:

return gulp.src([
      '../../Babylon/Math/babylon.math.js',
      '../../Babylon/Math/babylon.axis.js',
      
      ....

Build Babylon.js :

gulp

Will be generated :

  • build/babylon.js
  • build/babylon.min.js

Build Babylon.js when you save a file:

gulp watch