David Catuhe 45a3a3ac54 Nightly vor 7 Jahren
..
babylon.brickProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.brickProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.brickProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylon.cloudProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.cloudProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.cloudProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylon.fireProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.fireProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.fireProceduralTexture.min.js 97c5d80016 fixed #2982!!!!!!! vor 7 Jahren
babylon.grassProceduralTexture.d.ts 08783affe9 NoImplicitThis vor 7 Jahren
babylon.grassProceduralTexture.js 316209b431 Nightly vor 7 Jahren
babylon.grassProceduralTexture.min.js 316209b431 Nightly vor 7 Jahren
babylon.marbleProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.marbleProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.marbleProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylon.normalMapProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.normalMapProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.normalMapProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylon.perlinNoiseProceduralTexture.d.ts 8979e87e36 NIghtly vor 8 Jahren
babylon.perlinNoiseProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.perlinNoiseProceduralTexture.min.js 97c5d80016 fixed #2982!!!!!!! vor 7 Jahren
babylon.roadProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.roadProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.roadProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylon.starfieldProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.starfieldProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.starfieldProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylon.waterProceduralTexture.d.ts e8725fc827 Adding Normal Map Procedural Texture vor 8 Jahren
babylon.waterProceduralTexture.js e8725fc827 Adding Normal Map Procedural Texture vor 8 Jahren
babylon.waterProceduralTexture.min.js e8725fc827 Adding Normal Map Procedural Texture vor 8 Jahren
babylon.woodProceduralTexture.d.ts e8ca73d095 Nightly vor 8 Jahren
babylon.woodProceduralTexture.js 2c79a068d4 Nightly vor 7 Jahren
babylon.woodProceduralTexture.min.js 613af5b1b9 Fix playground bug when dist=true vor 8 Jahren
babylonjs.proceduralTextures.js 45a3a3ac54 Nightly vor 7 Jahren
babylonjs.proceduralTextures.min.js 45a3a3ac54 Nightly vor 7 Jahren
babylonjs.proceduralTextures.module.d.ts dd74ea9825 First nightly with new module support vor 7 Jahren
package.json 28b9d19fd1 npm update to 3.2.0-alpha8 vor 7 Jahren
readme.md 2561068aad Small error in the readme files of the submodules. vor 7 Jahren

readme.md

Babylon.js Procedural Textures Library

For usage documentation please visit http://doc.babylonjs.com/extensions and choose "procedural textures library".

Installation instructions

CDN

Compiled js files (minified and source) are offered on our public CDN here:

NPM

To install using npm :

npm install --save babylonjs babylonjs-procedural-textures

If using TypeScript, the typing needs to be added to tsconfig.json:

    ....
    "types": [
        "babylonjs",
        "babylonjs-procedural-textures",
        "oneMoreDependencyThatIReallyNeed"
    ],
    ....

Afterwards it can be imported to the project using:

import * as BABYLON from 'babylonjs';
import 'babylonjs-procedural-textures';

This will extend Babylon's namespace with the procedural textures available:

// Some awesome code
var fireMaterial = new BABYLON.StandardMaterial("fontainSculptur2", scene);
var fireTexture = new BABYLON.FireProceduralTexture("fire", 256, scene);
fireMaterial.diffuseTexture = fireTexture;
fireMaterial.opacityTexture = fireTexture;
// Some more awesome code

Using webpack to package your project will use the minified js file.