Yep. I dunno if anyone has made anything like a FPS, though. If you scroll back far enough on this miiverse you'll see a few 3d first person view dungeon/maze games.
Sure! To use the touch screen, you have to do two things: First, you have to choose a display mode that uses touch screen so near the top of your program, put XSCREEN 2 (2 is a mode that allow you to use both screens, with 3d graphics if you want on the top one). Then, in the part of your program where you want to put stuff on the touch screen, put DISPLAY 1.To go back to the top screen, DISPLAY 0
I haven't done it yet but the manual says you do 'TOUCH OUT TM,TX,TY' where TM is the time it was touched, and TX and TY are the coordinated where touched. Good luck!
im not shure how to use the code right.....this is what i did (1st line) touch out tm,tx,ty (didint say error)
(2nd line) tm 12 (dosint woke)
(3rd line) tx 15 (dosint work)
(4th line) ty 15 (dosint work)
I think what you need to do is read the TX and TY variables. For instance, try doing something afterwards like 'PRINT "You touched at", TX, TY' to see if it puts numbers after 'You touched at'. You'll have to put this into a loop for it to update if you touch somewhere else on the touch screen.