[Bootstrap] First go at Addressables bootsrapped objects

This commit is contained in:
Michal Pikulski
2025-09-07 12:36:35 +02:00
parent d3c6b838b4
commit d20004238d
65 changed files with 1748 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
using UnityEngine;
using UnityEngine.AddressableAssets;
namespace Editor.Bootstrap
{
/// <summary>
/// A scriptable object used to store references to CustomBoot settings for both Runtime and Editor.
/// </summary>
public class CustomBootProjectSettings : ScriptableObject
{
/// <summary>
/// The Addressables reference for the runtime settings
/// </summary>
public AssetReference RuntimeSettings;
/// <summary>
/// The Addressables reference for the editor settings
/// </summary>
public AssetReference EditorSettings;
}
}