Topic: Placing Object at a location on the screen.
I used the getWindowSale() function to do this:
windowSize = getWindowScale()
WIDTH = windowSize[1]
HEIGHT = windowSize[2]
CENTER = {WIDTH/2,HEIGHT/2}
Anyone know how I would place an object relative to a camera, at the center of the screen, or at any point?
Does getWindowScale() have anything to do with the camera? Or should I be using camera functions?
What purpose could getWindowSale() serve?