Home   Help Search Login Register  

Author Topic: How to create a first person intro  (Read 650 times)

0 Members and 1 Guest are viewing this topic.

Putin

  • Guest
How to create a first person intro
« on: 10 Jul 2003, 21:26:22 »
Hi there

I just wantet to ask how I can make a camera showing the first person of a unit.

Thanks

Offline Zombie

  • Members
  • *
  • Beware the night, the zombie walks among you
    • USI
Re:How to create a first person intro
« Reply #1 on: 10 Jul 2003, 22:50:48 »
Not sure what you mean here:
If you mean the camera shows a certian person in the group, name that person then _camera settarget personsname
If you mean a camera with a first person view that moves around, set the camera target somewhere, then move the camera with a slow camcommit and it will move to the next point.
I attached a simple "mission" below to show what I mean

Putin

  • Guest
Re:How to create a first person intro
« Reply #2 on: 10 Jul 2003, 23:58:06 »
No, I mean that the camera should be out of the view of a soldier, just like you always see it if you play sp.
First Person.

Putin

  • Guest
Re:How to create a first person intro
« Reply #3 on: 10 Jul 2003, 23:58:49 »
No, I mean that the camera should be out of the view of a soldier, just like you always see it if you play sp.
First Person.
Sorry that I explain that bad.

deaddog

  • Guest
Re:How to create a first person intro
« Reply #4 on: 11 Jul 2003, 01:04:50 »
Try this:

unit switchCamera mode
Operand types:
    unit: Object
    mode: String
Type of returned value:
    Nothing
Description:
    Switch camera to given vehicle / camera. Mode is one of: "INTERNAL" (1st person), "GUNNER" (optics / sights), "EXTERNAL" (3rd person), "GROUP" (group).

Example:
    sniperOne switchCamera "gunner"

Offline Zombie

  • Members
  • *
  • Beware the night, the zombie walks among you
    • USI
Re:How to create a first person intro
« Reply #5 on: 11 Jul 2003, 03:29:36 »
hmmm... new effect here for me.  I always use cameraeffect internal, I don'tnow what the differrence is between swichcamera and cameraeffect.  Might be worth playing around with, but not sure any of this helps you putin, sorry

Putin

  • Guest
Re:How to create a first person intro
« Reply #6 on: 11 Jul 2003, 18:05:03 »
What exactly am I now supposed to write into my .sqs file, if the units name was a1 ?

Offline Burn

  • Members
  • *
Re:How to create a first person intro
« Reply #7 on: 11 Jul 2003, 20:39:33 »
a1 switchCamera "INTERNAL" ::)

Putin

  • Guest
Re:How to create a first person intro
« Reply #8 on: 11 Jul 2003, 21:01:24 »
Thanks, IÂ'll try that.