The first part of the Blitz3D programming for beginners, we'll be looking at the basics of 3D followed by making a full 3D game in later parts. Enjoy, don't forget to comment and check out my blog! Code (Copy and paste the below into Blitz) Graphics3D 640,480,32,2 camera = CreateCamera() cube = CreateCone ;get rid of ambient lighting AmbientLight 0,0,0 light = CreateLight() MoveEntity light,10,0,0 MoveEntity camera,0,0,-5 While Not KeyDown(1) TurnEntity cube,0.2,0.4,0.5 RenderWorld() Flip Wend End
Hide player controls
Hide resume playing