- Panda3d 1.7 Game Developer's Cookbook
- Christoph Lang
- 367字
- 2021-04-09 21:21:45
Loading and attaching sounds to objects
In this recipe we will take a look into Panda3D's positional audio capabilities. 3D sound is a wonderful tool to immerse the player and to generate great atmosphere. Positional audio also can help the player to orientate: In a shooter, for example, it is much easier to return fire if one heard that the enemy units are attacking from behind.
Getting ready
Before starting this recipe, be sure to set up a project as described in Setting up the game structure. You will also need to provide a mono sound file called loop.wav
in the sounds
folder of your project.
How to do it...
Let's load a sound file and attach it to a model:
- Open
Application.py
and add the highlighted code:from direct.showbase.ShowBase import ShowBase from direct.showbase.Audio3DManager import Audio3DManager class Application(ShowBase): def __init__(self): ShowBase.__init__(self) self.smiley = loader.loadModel("smiley") self.smiley.reparentTo(render) self.audio = Audio3DManager(self.sfxManagerList[0]) self.audio.attachListener(self.cam) self.loop = self.audio.loadSfx("loop.wav") self.loop.setLoop(True) self.audio.attachSoundToObject(self.loop, self.smiley) self.loop.play() self.cam.setPos(0, -40, 0)
- Hold the left mouse button and move the mouse to pan the camera, or hold down the right mouse button and use the mouse to zoom in and out of the scene. Note how the sound position changes.
How it works...
The key to positional audio in Panda3D is the Audio3DManager
class. After adding a smiley to the scene, we initialize the Audio3DManager
and set the camera to be the listener object. This has the effect that all sounds played using positional audio will be mixed relative to the NodePath
we pass to attachListener()
.
Then, the sound file is loaded, set to be a loop and attached to the smiley, so that the sound plays wherever the object is positioned in the scene. Finally we start to play the sound loop and position the camera.
Note
Positional audio will not work if we are using a stereo sound file. Panda3D will print a warning message in the console output if our sound is stereo, not mono.
- UG NX 12.0中文版完全自學一本通
- Beginning Swift
- AutoCAD快速自學寶典(2018中文版)
- 數碼攝影后期高手之路(第2版)
- 中文版CorelDRAW X6基礎培訓教程
- 人臉識別算法與案例分析
- 無師自通AutoCAD:中文版室內設計
- 工業軟件研發、測試與質量管理論叢
- ADOBE FLASH PROFESSIONAL CS6 標準培訓教材
- 皮膚鏡圖像分析與識別
- 說服力:工作型PPT該這樣做(第2版)
- 中文版Photoshop CS5平面設計實用教程(第2版)
- Python Testing Cookbook
- Scribus 1.3.5: Beginner's Guide
- Microsoft Silverlight 4 and SharePoint 2010 Integration