Android Question Art

CurtisC

Member
Licensed User
Longtime User
I have gotten a copy of 2 pages of art assets such as buttons and numbers. While through the years I have seen art provided on pages I have no experience. What I understand is that certain X Y of art is painted to ? No experience or knowledge how to use.

Has anyone dealt with art assets on pages and explain how to use it.

Thankyou
 

DonManfred

Expert
Licensed User
Longtime User
Maybe my english is too bad but i did not understand what the question is.
 
Upvote 0

Jaames

Active Member
Licensed User
Longtime User
I have gotten a copy of 2 pages of art assets
Usually, you get some kind of text file with those pages whom describe where some piece of that page is located, for example,

button1_image{
x = 120
y = 340
w = 120
h = 60
}
Then you use canvas object to extract that piece from your "big picture".
If this make sense...
look at the atlas object from the Informatiix libGdx engine, to get a clue.
 
Upvote 0
Top