Quote: "Lol take a pyramid with a flattened top and look at it from above-5 sides used"
Try Van B's sphere. You'll need six sides. Which don't you think you need?
Edit
Try this DBPro snippet:
set display mode desktop width(), desktop height(), 32
sync on : sync rate 60 : sync
autocam off
color backdrop 0
position camera 0, 0, -400
point camera 0, 0, 0
make object sphere 1, 100
create bitmap 1, 8, 8
cls rgb(255, 0, 0)
get image 1, 0, 0, 8, 8 ` red
cls rgb(0, 255, 0)
get image 2, 0, 0, 8, 8 ` green
cls rgb(0, 0, 255)
get image 3, 0, 0, 8, 8 ` blue
cls rgb(255, 255, 0)
get image 4, 0, 0, 8, 8 ` yellow
cls rgb(255, 0, 255)
get image 5, 0, 0, 8, 8 ` purple
cls rgb(0, 255, 255)
get image 6, 0, 0, 8, 8 ` turquoise
set current bitmap 0
set cube mapping on 1, 1, 2, 3, 4, 5, 6
repeat
sync
until spacekey()
end
IRMC.