Skip to main content

Optimisation - Overview

One of the main goals is to provide a flexible yet simple tool for optimising the size of your playable builds.

The plugin utilizes many techniques ranging from web-friendly formats of the assets to sophisticated repacking of data to cut down the download size, speed up startup time and runtime performance.

As the majority of networks limit the size of playable ads (i.e. to 5Mb) and also prohibit network communication, this makes it difficult to download any additional data. Furthermore, Playable Ads must start quickly - otherwise the impression might get discarded, resulting in poor performance.

Finally, when building in Unity, you must be aware that the final product is running in the web environment, which is inherently performance constrained. Implementations that work well in Unity may not perform as well in a browser. Therefore, it is critical to be performance-conscious when building and optimising your playable experience.

Later in this section, we have provided some practical tips for optimising startup time and runtime performance and build size.

note

We are also releasing a series of articles on Size Optimization on Medium, the first of which you can find by clicking here.

Playable Size: Where to start

Warning

Developers should never fall for judging the build size by inspecting the development build it is not designed for production use of any sort as it lacks asset compression, serves each file individually and is meant purely for testing purposes on a local machine.

  • A good starting point would be to inspecting the Size Breakdown in the Playable Plugin. This will give you a good idea of what is taking up the most space in your playable.

  • You can also upload the build to Creative Suite and clicking Download or Publish button next to the creative that you're interested in.:

images-small

This opens the Publish page with all the available network options. Some networks options might have yellow of red warnings that indicate that the playable is too large for the network.

images-large

If the network you're interested in has a red warning, you need to optimise your playable size for that network.

Preloader Images

Important

Preloader images are never compressed in the Luna export process.

If your playable has extra sizing that is seemingly unaccounted for, it could be your preloader images.

Why we don't compress them

Preloader images are the first assets shown to the user whilst your playable loads. This means the images need to be raw in order to avoid unwanted decompression and read time. As such preloader images are put into the index.html file without any compression.

On the up side this reduces load times, however the file's original size will be the same in the playable as it is in Unity. This can increase your playable's size dramatically depending on the image(s).

How to reduce the size of Preloader Images

In order to reduce your preloader image file sizes, you will need to manually reduce their original size before exporting them with the Luna plugin.

To do so you can use a raster graphics editor (like Microsoft Paint or Adobe Photoshop) and scale the image down, or change the image format to a more lossy type (e.g. PNG32 -> PNG8, as Preloaders don't usually need an alpha value).

Reducing your preloader images can in turn cut your playable's total size dramatically, keep this in mind if you're looking to save space anywhere you can!