Added many other

This commit is contained in:
2026-08-06 18:56:32 +03:00
parent 9f2fd08ee5
commit d9d7ee49d2
2144 changed files with 1115424 additions and 1284 deletions
+16
View File
@@ -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>();
}