Try to Sign up Blitz Monkey website

Community Forums/Monkey Talk/Try to Sign up Blitz Monkey website

Hotshot2005(Posted 2011) [#1]
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?


Dabhand(Posted 2011) [#2]
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


Hotshot2005(Posted 2011) [#3]
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


Htbaa(Posted 2011) [#4]
Where's your main loop? Aren't you supposed to Flip your buffer as well? Or doesn't Monkey do that anymore?


marksibly(Posted 2011) [#5]
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.


Hotshot2005(Posted 2011) [#6]
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?


wmaass(Posted 2011) [#7]
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.