My Missing Cone

Blitz3D Forums/Blitz3D Beginners Area/My Missing Cone

Merrie(Posted 2007) [#1]
Im working with a tutorial and I have inserted a cone in my scene, but its not showing. Could someone take a peek and give me an idea of what the problem might be? Thanks

; Create Cylinder
cylinder1=CreateCylinder(16)
PositionEntity cylinder1,4,-4,10

; Create Cone
cone=CreateCone()
PositionEntity cone,3,-3,1

; Set enity colors

EntityColor cube1,255,0,0
EntityColor sphere1,102,255,102
EntityColor cylinder1,255,255,0
EntityColor cone,204,153,255




H&K(Posted 2007) [#2]
Camera?
If you do have a camera, is it pointing somewhere were it can see the cone?

(mind you I dont use B3d, so you might have done something wrong with createcone)


Merrie(Posted 2007) [#3]
Silly me, the cone is there just too far forward for the camera to see, all fixed thanks H&K :)