Metadata-Version: 2.1
Name: igeSound
Version: 0.2.0
Summary: C++ Sound extension for 3D and 2D games.
Home-page: https://indigames.net/
Author: Indigames
Author-email: dev@indigames.net
License: MIT
Keywords: Sound Audio 3D game Indigames
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Games/Entertainment
Description-Content-Type: text/markdown
License-File: LICENSE

# igeSound

C++ extension Sound for 3D and 2D games.

You can install it using the PyPI:

	pip install igeSound
### Features
- **(ogg , wav, mp3, flac)** extension are supported
- Caching, preloading, streaming is supported
### Functions
# First, you need to import and init the sound system
```python
import igeSound

igeSound.init()
```

# Play the sound
```python
# (sound_name , stream = False, loop = False)
igeSound.play('sound/background.ogg', False, False)

# I highly recommend to use streaming for ogg background music
```
# Release it when everything is done
```python
igeSound.release()
```
# 3D sound optional
- Global

- Local


### Todo
- To support 3D sound
- Sound packing strucure

### Reference
- [soloud](http://sol.gfxile.net/soloud/)



