Meta_AudioBuffer
Module: Metanodes / Definitions
An AudioBuffer represents sound data that can be played by multiple sources. More...
#include <meta_audio.hpp>
Public Types
Type | Name |
---|---|
enum | IDX { Idx_File, Idx_RawData, Idx_RawModifiedTime } Property index. |
Detailed Description
struct Meta_AudioBuffer;
An AudioBuffer represents sound data that can be played by multiple sources.
This node is usually created in a library and referenced from Meta_AudioSound or Meta_AudioTrack nodes. These are positional.
Public Types Documentation
enum IDX
Enumerator | Value | Description |
---|---|---|
Idx_File | string - Path to the audio file, which is loaded automatically and stored in RawData | |
Idx_RawData | vector<char> - Raw audio file data (including headers), can be set directly if not specifying a file name | |
Idx_RawModifiedTime | int64 - The time the raw data was last modified. Unix epoch (seconds since Jan 1 1970) stored as two 32-bit ints (LO,HI) |
Property index.