Search Unity

[Solved] Virtual camera activation event

Discussion in 'Cinemachine' started by baumxyz, Jan 6, 2019.

  1. baumxyz

    baumxyz

    Joined:
    Mar 31, 2017
    Posts:
    107
    Hello,

    is there an event that is getting fired when my vcam gets activated? Currently I'm checking for activation every frame inside my Update() method.

    I want the camera to start moving right after it's activation.


    Thanks in advance.

    Best Regards
     
  2. Gregoryl

    Gregoryl

    Unity Technologies

    Joined:
    Dec 22, 2016
    Posts:
    7,719
    Yes. The brain emits an event whenever a vcam becomes active:

    upload_2019-1-7_12-5-33.png

    Also the vcam itself has an event that fires when it's activated:

    upload_2019-1-7_12-6-35.png
     
    AlanPereiraArt and baumxyz like this.
  3. baumxyz

    baumxyz

    Joined:
    Mar 31, 2017
    Posts:
    107
    Ohhh, thank you. That makes a lot of sense!