Search Unity

I have a project that is UI-Only, what optimizations i can do?

Discussion in 'Getting Started' started by CyberInteractiveLLC, Mar 3, 2019.

  1. CyberInteractiveLLC

    CyberInteractiveLLC

    Joined:
    May 23, 2017
    Posts:
    307
    I have a small project, which is fully UI... few scripts, couple of sprites, etc, It's for mobile so i would appreciate help to:

    -What unnecessary stuff i can disable in settings?
    -Things to delete?
    -etc

    to reduce file size and improve battery life on mobile?


    thank u very much..
     
  2. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,780
    If you strictly about performance and file size, look into Project Tiny.
     
    Ryiah and JoeStrout like this.
  3. Ryiah

    Ryiah

    Joined:
    Oct 11, 2012
    Posts:
    21,205
    When you alter a UI element the Canvas forces an update to all of the UI elements contained by that Canvas, but it won't affect elements contained in other Canvases. If you have a large number of UI elements in a scene and most of them are static, moving the static elements to their own Canvas can improve performance.
     
    Schneider21 likes this.