Author Topic: Gestalt Cutscene - More than once camera move in the same cutscene  (Read 329 times)

Legacy_UnrealJedi

  • Full Member
  • ***
  • Posts: 226
  • Karma: +0/-0


               Okay, I am having a good time playing with this system. Cutscenes are a breeze now.

I tried having two different camera moves in the same cutscene using GestaltCameraMove (I think that's the function name, typing from memory). I set the first camera move to start 5 seconds after the cutscene started and run for 60 seconds (this is taking place during a conversation) and then having the second camera move start 65 seconds after the cutscene starts. Makes logical sense to me but it didn't seem to work. The first cutscene ran its course and then the camera stopped.

Is this not possible or am I just missing something?


Thanks!
               
               

               
            

Legacy_henesua

  • Hero Member
  • *****
  • Posts: 6519
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #1 on: October 24, 2012, 09:31:23 pm »


               when did you end the first cutscene?

If you are starting a new cutscene after the first you will need to adjust your timing relative to the start of the new cutscene.
               
               

               
            

Legacy_UnrealJedi

  • Full Member
  • ***
  • Posts: 226
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #2 on: October 25, 2012, 03:11:59 pm »


               I didn't end the first cutscene. I am trying to do two consecutive camera moves in one cutscene. The first camera movement takes 60 seconds at which time I have a second move camera command.
               
               

               
            

Legacy_Lightfoot8

  • Hero Member
  • *****
  • Posts: 4797
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #3 on: October 25, 2012, 03:29:05 pm »


               

UnrealJedi wrote...

I didn't end the first cutscene. I am trying to do two consecutive camera moves in one cutscene. The first camera movement takes 60 seconds at which time I have a second move camera command.


Keep in mind,  The PC is the camara, Since you can not have two PC's you can not have two camera's
               
               

               
            

Legacy_UnrealJedi

  • Full Member
  • ***
  • Posts: 226
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #4 on: October 25, 2012, 04:11:18 pm »


               So I would need to end the first cutscene and start a second one in order to have the cinematic effect of two separate camera moves?
               
               

               
            

Legacy_henesua

  • Hero Member
  • *****
  • Posts: 6519
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #5 on: October 25, 2012, 04:34:25 pm »


               No, you can do several camera movements. Can you please share all of the code which defines the cutscene? Maybe we'll see something that you overlooked.
               
               

               
            

Legacy_UnrealJedi

  • Full Member
  • ***
  • Posts: 226
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #6 on: October 25, 2012, 05:06:48 pm »


               Will do when I have the chance. Thanks!
               
               

               
            

Baaleos

  • Administrator
  • Hero Member
  • *****
  • Posts: 1916
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #7 on: October 30, 2012, 03:18:31 pm »


               

GestaltCameraTrack(2.00,
                        oMinion,
                        3.00,70.00,
                        4.00,90.00,
                        15.00,30.00,
                        oCaster,1,1);

    GestaltActionJump(14.00,oCaster,OBJECT_INVALID,"cutscene_before_throne");

This is the sort of thing you need to use to get camera angle transitions to work.

eg: You set the target you are going to be looking at, and then you jump to another location.
The Camera will automatically rotate to keep you looking at the target location/object.
               
               

               
            

Legacy_WoC_Builder

  • Sr. Member
  • ****
  • Posts: 425
  • Karma: +0/-0
Gestalt Cutscene - More than once camera move in the same cutscene
« Reply #8 on: November 12, 2012, 06:24:12 pm »


               So, since I am also working on something similar, I'll just ask here.  Do I understand this correctly?  If I want to change the perspective of the camera (e.g. NOT looking from the PC's pov), then I need to jump the PC?

Based on your example above, oMinion is the target, and oCaster is the viewpoint?

I'm curious though; does just the viewpoint jump, or the body of the oCaster?  I can see how I would want oCaster rooted to the spot, but look from a different vantage.