Both sides previous revisionPrevious revisionNext revision | Previous revision |
public:t-vien-07-1:lab_4_materials [2007/02/02 04:05] – hannes | public:t-vien-07-1:lab_4_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 |
---|
| |
* 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 |
| |
| |
| |
</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') |
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") |
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 :) |
| |