[Bf-blender-cvs] [970c928f271] master: Py API Docs: Fix audio docs example

Jorge Bernal noreply at git.blender.org
Sat Sep 18 19:29:25 CEST 2021


Commit: 970c928f27106b26ec7cf6afa2316c60384ab4f1
Author: Jorge Bernal
Date:   Sat Sep 18 19:28:55 2021 +0200
Branches: master
https://developer.blender.org/rB970c928f27106b26ec7cf6afa2316c60384ab4f1

Py API Docs: Fix audio docs example

After new AUD API changes from 2.8x what "buffer" function used to do
has now become "cache" function (it caches a sound into RAM). Therefore,
the basic aud example should call this new "cache" function instead of
"buffer" function.

Thanks to Michael-Z-Freeman for pointing out.

===================================================================

M	doc/python_api/examples/aud.py

===================================================================

diff --git a/doc/python_api/examples/aud.py b/doc/python_api/examples/aud.py
index a52258c1a45..0eb27647671 100644
--- a/doc/python_api/examples/aud.py
+++ b/doc/python_api/examples/aud.py
@@ -14,7 +14,7 @@ sound = aud.Sound('music.ogg')
 # play the audio, this return a handle to control play/pause
 handle = device.play(sound)
 # if the audio is not too big and will be used often you can buffer it
-sound_buffered = aud.Sound.buffer(sound)
+sound_buffered = aud.Sound.cache(sound)
 handle_buffered = device.play(sound_buffered)
 
 # stop the sounds (otherwise they play until their ends)



More information about the Bf-blender-cvs mailing list