User Tools

Site Tools


public:t-vien-07-1:lab_4_materials

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:t-vien-07-1:lab_4_materials [2007/02/02 04:05] hannespublic:t-vien-07-1:lab_4_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 21: Line 21:
  
   * Download and unzip the [[http://www.ru.is/kennarar/hannes/classes/ve2007/Lab4Assets.zip|Lab 4 Asset File]] into your working director   * Download and unzip the [[http://www.ru.is/kennarar/hannes/classes/ve2007/Lab4Assets.zip|Lab 4 Asset File]] into your working director
 +
  
  
Line 45: Line 46:
 </code> You can call **show()** on your new collision node nodepaths to see your collision solids as semi-transparent objects when you view your scene.  Verify that your solids are in the right place and then remove the calls to show(). </code> You can call **show()** on your new collision node nodepaths to see your collision solids as semi-transparent objects when you view your scene.  Verify that your solids are in the right place and then remove the calls to show().
   - **Making the box move:**\\ Create a new **LerpPosInterval** for the box and have it move to the location **(1,0,-1)**.  Make the **World** accept a 'mouse1' event and call a method that starts this interval playing.  A duration of **3.0 seconds** for this movement seems good and you might want to try different blend types.  Verify that you can make the box move by clicking the left mouse button.  Notice that the box goes right through the door.   - **Making the box move:**\\ Create a new **LerpPosInterval** for the box and have it move to the location **(1,0,-1)**.  Make the **World** accept a 'mouse1' event and call a method that starts this interval playing.  A duration of **3.0 seconds** for this movement seems good and you might want to try different blend types.  Verify that you can make the box move by clicking the left mouse button.  Notice that the box goes right through the door.
-  - **Make a collision happen:**\\ Create a new instance of a **CollisionHandlerEvent** and add the event pattern shown below:<code python>+  - **Making a collision happen:**\\ Create a new instance of a **CollisionHandlerEvent** and add the event pattern shown below:<code python>
 collhandler = CollisionHandlerEvent() collhandler = CollisionHandlerEvent()
 collhandler.addInPattern('%fn-into-%in') collhandler.addInPattern('%fn-into-%in')
Line 57: Line 58:
    print collEntry     print collEntry 
 </code> In addition to printing out some information like is done in this example, you should call the **pause()** method on the LerpPosInterval associated with the box object.  This will stop the progress of the box movement.  Verify that the box stops now when the door is closed but goes all the way down when the door is open. </code> In addition to printing out some information like is done in this example, you should call the **pause()** method on the LerpPosInterval associated with the box object.  This will stop the progress of the box movement.  Verify that the box stops now when the door is closed but goes all the way down when the door is open.
-  - **Add sounds:**\\ To add sounds to this scene, you can use **thud.wav** for when the box hits the door and **close.wav** for when the door slams shut.  You don't have to localize these sounds, just load them in like this: <code python>+  - **Adding sounds:**\\ To add sounds to this scene, you can use **thud.wav** for when the box hits the door and **close.wav** for when the door slams shut.  You don't have to localize these sounds, just load them in like this: <code python>
 thudsound = loader.loadSfx("thud.wav" thudsound = loader.loadSfx("thud.wav"
 closesound = loader.loadSfx("close.wav") closesound = loader.loadSfx("close.wav")
Line 64: Line 65:
 newinterval = Sequence(interval1, interval2, ... ) newinterval = Sequence(interval1, interval2, ... )
 </code> </code>
 +  - It would be great to add lighting and for example have a red flashing warning light go off every time the door moves :)
 +
/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-07-1/lab_4_materials.1170389114.txt.gz · Last modified: 2024/04/29 13:33 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki