Okay, I've been trying to make a 3rd person shooter in BASIC. I've got it working so the guy can move around and shoot, but it runs extremely slow. I realize that BASIC is slow anyway, but I think most of this is my fault.
I have the program, a sub routine to move,one to shoot, and one for the moving target you shoot at all called in the program's main loop. Does calling a sub routine slow your program more than just trying to put it all in the same program? And I have it so you can only shoot one bullet at a time due to the lack of variables. Is using a list slower than just using variables?
I have the program, a sub routine to move,one to shoot, and one for the moving target you shoot at all called in the program's main loop. Does calling a sub routine slow your program more than just trying to put it all in the same program? And I have it so you can only shoot one bullet at a time due to the lack of variables. Is using a list slower than just using variables?