Version: 2021.2
LanguageEnglish
  • C#

PlayerSettings.WSA.supportStreamingInstall

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public static bool supportStreamingInstall;

Description

Indicates whether you can launch the Universal Windows Platform application package before installation is complete.

In the Editor, Unity displays this under Streaming Install in UWP Player Settings.
If you enable Streaming Install, you must also set a lastRequiredScene value to indicate which scenes the application requires to launch and which scenes are streamable.

Unity generates an AppxContentGroupMap.xml file which specifies the assets that the application requires to launch and which the application can stream in the background while the application is running.
The application requires the assets from the scenes from the top of the Build list through to the lastRequiredScene and does not launch until it installs these assets. The application considers assets from the remaining scenes as streamable which allows the application to launch before installing these assets..

For information on Streaming install, see Microsoft's documentation.