What is object settings "Burst" and "Managed" Delta Compressor

Options

I want to know what is Delta compressor is and what dose it do

what is the difference of burst and managed

and what is recommended option

Best Answer

  • Luke_Sta
    Luke_Sta admin
    Answer ✓
    Options

    Managed is a regular c# implementation that already performs very well. Burst is an option that uses Unity's burst compiler which might be able to generate native code which is even faster than the managed implementation.

    You can usually leave it at the default one but if you have a lot of data to delta compress and are looking for ways to get free performance boosts switching is an option.

Answers

  • Luke_Sta
    Luke_Sta admin
    Answer ✓
    Options

    Managed is a regular c# implementation that already performs very well. Burst is an option that uses Unity's burst compiler which might be able to generate native code which is even faster than the managed implementation.

    You can usually leave it at the default one but if you have a lot of data to delta compress and are looking for ways to get free performance boosts switching is an option.