Files
Cielonos/Packages/dev.yarnspinner.unity/Editor/Utility/AssetStoreSamplesInstaller.cs
SoulliesOfficial 8186f54e90 新场景,剧情
2026-06-02 12:55:39 -04:00

18 lines
455 B
C#

#nullable enable
namespace Yarn.Unity.Editor
{
internal static class AssetStoreSamplesInstaller
{
internal const string assetStoreURL = "https://assetstore.unity.com/packages/slug/319418";
internal static void InstallSamples()
{
if (YarnPackageImporter.IsSamplesPackageInstalled)
{
return;
}
UnityEngine.Application.OpenURL(assetStoreURL);
}
}
}