TexturesModule
Example
//==============================================================================
// The following example demonstrates how to access a texture in the Assets and
// assign it to a material.
//
// Project setup:
// - Insert a plane
// - Create a material
// - Import an image to use as a texture (renaming it texture0)
// - Assign the material to the plane
//==============================================================================
// Load in the required modules
const Materials = require('Materials');
const Textures = require('Textures');
// Locate the material and texture in the Assets
const material = Materials.get('defaultMaterial0');
const texture = Textures.get('texture0');
// Assign the texture to the material
material.diffuse = texture;Properties
Methods
Classes
Last updated
Was this helpful?