diff options
Diffstat (limited to 'VRCSDK3Worlds/Assets/Bakery/ftLocalStorage.cs')
-rw-r--r-- | VRCSDK3Worlds/Assets/Bakery/ftLocalStorage.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/VRCSDK3Worlds/Assets/Bakery/ftLocalStorage.cs b/VRCSDK3Worlds/Assets/Bakery/ftLocalStorage.cs new file mode 100644 index 00000000..f8310211 --- /dev/null +++ b/VRCSDK3Worlds/Assets/Bakery/ftLocalStorage.cs @@ -0,0 +1,16 @@ +using UnityEngine; +using System.Collections.Generic; + +#if UNITY_EDITOR +using UnityEditor; +#endif + +public class ftLocalStorage : ScriptableObject +{ + [SerializeField] + public List<string> modifiedAssetPathList = new List<string>(); // marks model as processed + + [SerializeField] + public List<int> modifiedAssetPaddingHash = new List<int>(); +} + |