Table of Contents

Class AudioClip

Namespace
LibGFX.Audio
Assembly
LibGFX.dll

Represents an audio clip

public class AudioClip
Inheritance
AudioClip
Inherited Members

Constructors

AudioClip(string, string)

Creates a new audio clip

public AudioClip(string name, string path)

Parameters

name string
path string

Properties

AudioClipState

The state of the audio clip

public AudioClipState AudioClipState { get; set; }

Property Value

AudioClipState

BufferId

The buffer ID of the audio clip

public int BufferId { get; set; }

Property Value

int

Bytes

The bytes of the audio clip

public byte[] Bytes { get; set; }

Property Value

byte[]

Name

The name of the audio clip

public string Name { get; set; }

Property Value

string

Time

The time of the audio clip in seconds

public float Time { get; set; }

Property Value

float

WaveFormat

The wave format of the audio clip

public WaveFormat WaveFormat { get; set; }

Property Value

WaveFormat