public:t-vien-12-1:lab_7_materials
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
public:t-vien-12-1:lab_7_materials [2012/02/22 11:02] – [Roaming Ralph with a HUD] hannes | public:t-vien-12-1:lab_7_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 5: | Line 5: | ||
* Download and unzip the [[http:// | * Download and unzip the [[http:// | ||
- | ==== Roaming Ralph with a HUD ==== | + | ==== Effect Room ==== |
- | [[http:// | + | {{http:// |
In this exercise you'll start with an empty room and then add some " | In this exercise you'll start with an empty room and then add some " | ||
+ | |||
+ | - **Creating and adding an animated texture**\\ Find the function **create_lightbeam** and add the following code to it:<code python> | ||
+ | beammaterial = Material() | ||
+ | beammaterial.setDiffuse(VBase4(1, | ||
+ | beammaterial.setEmission(VBase4(1, | ||
+ | beammodel = loader.loadModel(" | ||
+ | beam = self.parent.attachNewNode(" | ||
+ | beam.setMaterial(beammaterial) | ||
+ | beammodel.instanceTo(beam) | ||
+ | beam.setPos(1.55, | ||
+ | beam2 = self.parent.attachNewNode(" | ||
+ | beam2.setMaterial(beammaterial) | ||
+ | beammodel.instanceTo(beam2) | ||
+ | beam2.setPos(1.55, | ||
+ | beam2.setH(-10)</ | ||
+ | - ** Creating projected light**\\ Now you want to create the lit up window pattern on the floor, as if it's light coming through the broken window panes. You can do this by setting up a texture projector that essentially projects a texture with a perspective projection from somewhere outside the window and onto the floor panel. Add the following code to the **create_projectedlight** function: <code python> | ||
+ | projector = self.parent.attachNewNode(LensNode(' | ||
+ | lens = PerspectiveLens() | ||
+ | projector.node().setLens(lens) | ||
+ | projector.setPos(2.55, | ||
+ | projector.lookAt(1.5, | ||
+ | lightimage = loader.loadTexture(" | ||
+ | lightimage.setWrapU(Texture.WMClamp) | ||
+ | lightimage.setWrapV(Texture.WMClamp) | ||
+ | lightts = TextureStage(' | ||
+ | self.floors[1].projectTexture(lightts, | ||
+ | - The projector is correctly set up here, but there are a few things you still need to do to make this work. First of all, you have to create the texture that you want to project on the floor. Here we call it **wall_tanned_door_light.tif**. What should this texture look like? Study the screen shot above and try to understand what kind of texture you need. Then start with a copy of **wall_tanned_door.tif** and change it into the right texture for the light pattern. Try it out. | ||
+ | - You may notice that the texture doesn' | ||
+ | - ** Crating particles **\\ Add the following code to the **create_particles** funtion to get a particle generator installed:< | ||
+ | base.enableParticles() | ||
+ | self.p = ParticleEffect() | ||
+ | self.p.loadConfig(Filename(" | ||
+ | self.p.start(self.parent) | ||
+ | self.p.setPos(1.6, | ||
+ | self.p.setHpr(0, | ||
+ | - ** Creating a bloom effect **\\ The following code may not work on all graphics cards, since they have to support programmable shaders. You should get warning messages on the console about this as well as not seeing the actual effect. Try adding the following code to the **create_bloom** function:< | ||
+ | render.setShaderAuto() | ||
+ | self.filters = CommonFilters(base.win, | ||
+ | self.filters.setBloom(size=" |
/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-12-1/lab_7_materials.1329908520.txt.gz · Last modified: 2024/04/29 13:33 (external edit)