- Home /
player picture
How can i make a GUI picture of the players character that updates when the get new armor or anything, like in WoW, by the hp bar, that picture?
Answer by Knightleaf · Dec 31, 2011 at 09:38 AM
without manually doing it the easiest way is using render to texture, which is a unity pro thing, look up render to texture, it should help :D
Answer by Darkforce1980 · May 14, 2013 at 04:40 PM
I do not now if you can use this(Java) var teamnr : int;
var blue : Texture;
var red : Texture;
//Player texture var player : Texture;
if(teamnr ==1)
{
player = blue
}
if(teamnr ==2)
{
player = red;
}
Your answer
Follow this Question
Related Questions
GUI Pop-Up On Cube Collision 1 Answer
How to make a monolgue? 1 Answer
GUI SCREW UPS! 1 Answer
Deduct health on collision 2 Answers
In Game player message - GUIText or something else? 1 Answer