AttenuationModelLinear
Defines a linear attenuation curve for a Sound. More...
Import Statement: | import QtAudioEngine 1.0 |
Since: | Qt 5.0 |
Inherits: |
Detailed Description
This type is part of the QtAudioEngine 1.0 module.
AttenuationModelLinear must be defined inside AudioEngine.
import QtQuick 2.0 import QtAudioEngine 1.0 Rectangle { color:"white" width: 300 height: 500 AudioEngine { id:audioengine AttenuationModelLinear { name:"linear" start: 20 end: 180 } AudioSample { name:"explosion" source: "explosion-02.wav" } Sound { name:"explosion" attenuationModel: "linear" PlayVariation { sample:"explosion" } } } }