Vizard 7 » Tutorials & Examples » Appearance & texturing » Environment mapping » Tutorial: Applying environment maps
7.5

Tutorial: Applying environment maps

After loading the maps, we need an object to apply the environment map to. The following code will add the vizard logo and place it in front of the viewer:

logo = viz.addChild('logo.ive')
logo.setPosition([0,1,3])

Now we're ready to apply the texture env we built in the previous section:

logo.texture(env)

Try this now by pressing F5 to run the script and see the results. You'll see that the maps are etched onto the object and not acting like reflections. This is because there is one last important step we need to perform. We need to set the appearance of the logo to viz.ENVIRONMENT_MAP:

logo.appearance(viz.ENVIRONMENT_MAP)

Run your script to see the environment map on the logo. To make the reflections stand out more try adding the following code to spin the logo:

logo.addAction( vizact.spin(0,1,0,60) )

If you want to control the shininess of the object please take a look at the multitexturing tutorial.

 

Before:

 

After:

 

For additional examples, check out:

nodes

Loading environment maps

Applying environment maps