- Home /
Question by
freshghost · Jan 24, 2014 at 02:42 PM ·
audio clipping
how to import audio into Unity3D wiht coding
how to import audio into Unity3D wiht coding
Comment
Answer by Eder · Jan 24, 2014 at 03:31 PM
Option one:
Create a new public AudioClip.
public AudioClip SoundExample;
(and attach sound in Script Component)
Option One
Get direct sound and creat.
AudioClip SoundExample = AudioClip.Create("MySinoid", 44100, 1, 44100, false, true, OnAudioRead, OnAudioSetPosition);
Your answer
Follow this Question
Related Questions
Audio Spatializer implementation and distribution challenges 1 Answer
Dynamic Sound: Wind up Wind down Audio 1 Answer
How to import the code to realize the audio resources, and code assignment of AudioClip. 1 Answer
Truncate audio runtime 0 Answers
Help adjusting Audio script settings to a specific sound 0 Answers