Enum MissingSubmoduleErrorHandlingType
Controls what happens if a function of a stripped submodule is called.
Namespace: Unity.Web.Stripping.Editor
Assembly: Unity.Web.Stripping.Editor.dll
Syntax
public enum MissingSubmoduleErrorHandlingType
Fields
| Name | Description |
|---|---|
| Ignore | Do nothing if a function of a stripped submodule is called. |
| LogError | Log an error to the browser console if a function of a stripped submodule is called, but try to continue execution. |
| ThrowException | Throw an exception if a function of a stripped submodule is called and halt execution. |