I am trying to get another camera view (top view), working over the top
of my main view, this is the code so far...it works as part of te
tutorial I doing but i cannot get it to show on mine
Any ideas ??
-KEV-
------------------------main camera positioning--------------
scene.camera[1].transform.identity()
scene.model("CONE01").addchild(scene.camera[1], #preserveparent)
scene.camera[1].fieldofview = 45
scene.camera[1].translate(0,-100,75,#parent)
scene.camera[1].rotate(50,0,0)
--
scene.camera[1].clone("dummy")
scene.camera[1].parent = scene.group("world")
-----------------------make new view---------------------------
cam = scene.newcamera("topview")
cam.fieldofview = 90
cam.transform.identity()
scene.model("CONE01").addchild(cam, #preserveparent)
cam.translate(0,40,0)
cam.pointat(scene.model("CONE01"))
sprite(1).addcamera(cam)
PP = sprite(1).rect
scene.camera[3].rect = rect(440,10,630,200)
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]