Hey guys, I want to create a radar that shows up in a little circle to the bottom left of the screen but the code that I'm using causes the camera to disappear from view and I'm not sure how to fix it.
//Create, Position and Point
dbMakeCamera(1);
dbPositionCamera(1,0,1000,0);
dbPointCamera(1,0,0,0);
//Set View, Getting Error Here ---> The view doesn't even show
dbSetCameraView(1, 0, -dbScreenHeight()/4, dbScreenWidth()/4, -dbScreenHeight());
Also, right now, I'm just using a square window, I'm not sure how to make it a circle.
Thank You