File:Multitex smiley noise.png

Don't mind the mess!

We're currently in the process of migrating the Panda3D Manual to a new service. This is a temporary layout in the meantime.

Top
Python C++
Multitex_smiley_noise.png(267 × 200 pixels, file size: 42 KB, MIME type: image/png)

Smiley with noise.rgb applied as multitexture

This image was generated with the following program:

from direct.directbase.DirectStart import *
from pandac.PandaModules import *

base.setBackgroundColor(1, 1, 1, 1)

smiley = loader.loadModel('smiley.egg')
smiley.reparentTo(render)

dl = DirectionalLight('dl')
dlnp = base.camera.attachNewNode(dl)
smiley.setLight(dlnp)

tex = loader.loadTexture('maps/noise.rgb')
ts = TextureStage('ts')
smiley.setTexture(ts, tex)

base.disableMouse()
camera.setPos(1, -5, 1)
camera.setHpr(12, -10, 0)

base.graphicsEngine.renderFrame()
base.screenshot('multitex_smiley_noise.png', defaultFilename = 0)

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current17:42, 4 October 2005Thumbnail for version as of 17:42, 4 October 2005267 × 200 (42 KB)Drwr (Talk | contribs)Smiley with noise.rgb applied as multitexture

The following page links to this file:

Top