Try to Sign up Blitz Monkey website
Community Forums/Monkey Talk/Try to Sign up Blitz Monkey website| 
 | ||
| I have try to sign up but I dont have Registration code as does mean I have wait for my email of Registration code for me sign in? | 
| 
 | ||
| If you've bought it, then yeah, you should of received a MUID [See what I did there] which I presume you enter when signing up... Much the same as here! Dabz | 
| 
 | ||
| OH RIGHT I see......I cant seem get Player Image on the Screen :( 
Import mojo
Class DrawTest Extends App
      Field Player:Image
      Method OnCreate()
             Player=LoadImage("player.png")
             SetUpdateRate 60
      End
      Method OnUpdate()
            
      End
      Method OnRender()
             Cls 255,255,255
             DrawImage Player,320,10
      End
End Class
Function Main()
         New DrawTest
End 
The png pic is Pink with spaceship but it all white...no pic of spaceship.....I guess I am should GLOBAL Player :) I am trying out the demo as much as I can before I buy it :) Last edited 2011 | 
| 
 | ||
| Where's your main loop? Aren't you supposed to Flip your buffer as well? Or doesn't Monkey do that anymore? | 
| 
 | ||
| Hi, > The png pic is Pink with spaceship but it all white...no pic of spaceship.....I guess I am should GLOBAL Player :) You may have to place the image in the apps '.data' directory - see samples. | 
| 
 | ||
| Hiya mark, I put player image in the data but when i run the program....it doesnt show the image on screen....i check the data folder and player image is gone.... which shock me why is that? | 
| 
 | ||
| I was scratching my head on this as well then I created a DrawTest.data folder in the dir where DrawTest.monkey was, put the PNG in there and all was good to go. |