Here a short example of how to use a bool variable. Sometimes you need to remember something in your program and this shows how you can do something like that.
Import mojo
Global mysetting1:Bool = False
Class MyGame Extends App
Method OnCreate()
SetUpdateRate(60)
End
Method OnUpdate()
If KeyHit(KEY_SPACE)
If mysetting1 = False Then mysetting1=True Else mysetting1=False
End If
End
Method OnRender()
Cls 0,0,0
'set the color
SetColor 255,255,255
DrawText "Press space bar to change variable.",10,10
If mysetting1 = True
DrawText "Variable bool set to true",100,50
End If
If mysetting1 = False
DrawText "Variable bool set to false",100,50
End If
End
End
Function Main()
New MyGame()
End
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.