Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Camera post FX sequence order

Discussion in 'Image Effects' started by eco_bach, Feb 27, 2016.

  1. eco_bach

    eco_bach

    Joined:
    Jul 8, 2013
    Posts:
    1,601
    I assume camera effects are processed in sequence from top to bottom. Can anyone confirm this?
     
  2. hippocoder

    hippocoder

    Digital Ape

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    Correct, although some camera scripts are able to specify the order manually. Generally this is OK though and for good reason.

    So yeah, you want your hdr image effects above your tonemapping.
     
  3. GoGoGadget

    GoGoGadget

    Joined:
    Sep 23, 2013
    Posts:
    864
    Yes, although image effects with [ImageEffectOpaque] above OnRenderImage(...) will render before transparents in the scene have been rendered (eg: SSAO usually uses this).