Civilization IV Python Documentation
CyAudioGame
Method Resolution Order
- CyAudioGame
- Boost.Python.instance
- __builtin__.object
Methods defined in this class
- Destroy2DSound(...) - void (int soundhandle) - Stop playing and destroy sound using soundhandle.
- Destroy3DSound(...) - void (int soundhandle) - Stop playing and destroy sound using soundhandle.
- Is2DSoundPlaying(...) - bool (int soundhandle) - Is the sound using this soundhandle and scriptname playing?.
- Is3DSoundPlaying(...) - bool (int soundhandle) - Is the sound using this soundhandle and scriptname playing?.
- Play2DSound(...) - int (TCHAR* scriptname) - Play 2d sound using scriptname and return a handle to the sound.
- Play2DSoundWithId(...) - int (int scriptId) - Play 2d sound using scriptId and return a handle to the sound.
- Play3DSound(...) - int (TCHAR* scriptname, float x, float y, float z) - Play 3d sound using scriptname at position (x,y,z) and return a handle to the sound.
- Play3DSoundWithId(...) - int (int scriptId, float x, float y, float z) - Play 3d sound using scriptId at position (x,y,z) and return a handle to the sound.
- Set2DSoundVolume(...) - void (int soundhandle, float volume) - Set volume to value between 0.0f and 1.0f to sound using soundhandle.
- Set3DSoundPosition(...) - void (int soundhandle, float x, float y, float z) - Set position of sound using soundhandle to (x,y,z).
- Set3DSoundVolume(...) - void (int soundhandle, float volume) - Set volume to value between 0.0f and 1.0f to sound using soundhandle.
- __init__(...)
Other Attributes
Inherited Attributes
- __dict__ = <dictproxy object>
- __new__ = <built-in method __new__ of Boost.Python.class object>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
- __weakref__ = <member '__weakref__' of 'Boost.Python.instance' objects...