don't forget to add
AppGameKit to RetroBrik's Metadata/
Engines & Tools to be included in
the queue. it's easy cross-promotion where most of us want as many people to enjoy our efforts as possible, and want to find each other's work. i've also followed you, there.
and, adding an HTML version would be wonderful for those of us that like to play games from wherever we may be or on whatever device is available
otherwise,
good fun!
my only complaints are: like the ball, the bat can be difficult to track, as well, depending on the background and all else that might be going on. and, i'd like to maximize the window, as well.
meanwhile, here's a function found on the forums to add commas to our scores:
Function DoScore(Score)
numStr$ = str(Score)
final$ = ""
cnt = 0
charCount = len(numStr$)
for c=1 to charCount
final$ = Right(numStr$, 1) + final$
numStr$ = Left(numStr$, len(numStr$)-1)
if c<>charCount
inc cnt
if cnt=3
cnt = 0
final$ = "," + final$
endif
endif
next
SetTextString(scoreText,final$)
EndFunction
it might help you knock something off your to-do list for RetroBrik˜.
keep up the good work!