Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
How do I know which image was loaded? — Gideros Forum

How do I know which image was loaded?

sslivkasslivka Member
edited May 2013 in General questions
I have two images for different resolutions (image.png (200x200) and image@2x.png (400x400))
I write my code:
[lua]
local bitmap1 = Bitmap.new(Texture.new("image.png"))
stage:addChild(bitmap1)
[/lua]
How do I know which image was loaded in code image.png orimage@2x.png?

Comments

Sign In or Register to comment.