You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
663 B
C#
25 lines
663 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace UnityEngine.U2D.Animation
|
|
{
|
|
internal class SpriteLibrarySourceAsset : ScriptableObject
|
|
{
|
|
[SerializeField]
|
|
private List<SpriteLibCategoryOverride> m_Library = new List<SpriteLibCategoryOverride>();
|
|
[SerializeField]
|
|
private string m_PrimaryLibraryGUID;
|
|
|
|
public List<SpriteLibCategoryOverride> library
|
|
{
|
|
get => m_Library;
|
|
set => m_Library = value;
|
|
}
|
|
|
|
public string primaryLibraryID
|
|
{
|
|
get => m_PrimaryLibraryGUID;
|
|
set => m_PrimaryLibraryGUID = value;
|
|
}
|
|
}
|
|
} |