| Parameter | Description |
|---|---|
| address | The address to clear. |
bool
true if an alias was removed; otherwise, false.
Removes any alias registered under the given address.
An empty or null address is treated as absent and returns false. After removal, the
address resolves as a plain Resources path again.
<para>Remove an alias that was registered earlier.</para>
using Unity.Localization.Providers; using UnityEngine;
namespace Unity.Localization.Samples { public class ResourceFolderProviderRemoveExample { public void Run() { var provider = new ResourceFolderProvider(); provider.AddAlias("6f1e2c0a9b3d4e5f", "UI/Logo");
Debug.Log(provider.Remove("6f1e2c0a9b3d4e5f")); // True } } }