Can't load images *resolved*
Monkey Targets Forums/Windows 8/Can't load images *resolved*| 
 | ||
| hello all Today i started a test project with windows phone 8. But i can't load any images in Windows Phone 8? Any idea, how i can debug it? or is it a bug by monkey? Strict
Import mojo
Function Main:Int()
	New test()
	Return 0
End
Class test Extends App
	Field _image:Image
	Method OnCreate:Int()
		_image = LoadImage("sprites/chars/hero.png")
		If Not _image Error("Can't load!")
		Return 0
	End
	
	Method OnRender:Int()
		DrawImage(_image, 0, 0)
		Return 0
	End
	
	Method OnUpdate:Int()
		Return 0
	End
EndI see, that the image exists (on all other targets it works) best regards *edit* Resolved! It was the wrong option in texturepacker... |