- Home /
embedding link, video, sound, text. how?
Hi, i am a beginner and i have 4 questions. I would like to embed in my unity project 1, a link 2, a video 3, sound 4, text.
where and how can i do it? Thank you so much.
Comment
Answer by Graham-Dunnett · May 14, 2013 at 10:29 AM
GUItext
MovieTexture
AudioClip
GUItext
Look those up in the documentation. :-)
Answer by programmrzinc · May 14, 2013 at 03:45 PM
In Unity Free, you cannot add Video, but the other objects are viable.
Link
function OnGUI () {
if(GUI.Button(new Rect(0,0,20,10), "Link"){
Application.OpenURL ("http://unity3d.com/");
}
}
Sound
Text
Your answer
Follow this Question
Related Questions
How to get spatial 3D sound on Video Player 1 Answer
icon or text activates script 0 Answers
Cutscene(Animation) problem 0 Answers
Best way to animate text? 1 Answer
In game helper 1 Answer