This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using UnityEditor; | |
using UnityEngine; | |
public class AssetDistribution | |
{ | |
[MenuItem("AssetDatabase/GetAssetDistributions")] | |
public static void GetAssetDistribution() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Text; | |
using UnityEditor; | |
using UnityEditor.Experimental; | |
using UnityEngine; | |
public class DumpAllAssetPaths : MonoBehaviour | |
{ | |
[MenuItem("AssetDatabase/OutputAllLibraryPaths")] | |
public static void OutputPathToAssets() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Text; | |
using UnityEditor; | |
using UnityEditor.Experimental; | |
using UnityEngine; | |
public class DumpAllAssetPaths : MonoBehaviour | |
{ | |
[MenuItem("AssetDatabase/OutputAllLibraryPaths")] | |
public static void OutputPathToAssets() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEngine; | |
public class FindProblematicAsset | |
{ | |
[MenuItem("AssetDatabase/ZeroGUID")] | |
public static void GetZeroGUID() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Text; | |
using UnityEditor; | |
using UnityEditor.Experimental; | |
using UnityEngine; | |
public class LibraryPathsForAsset | |
{ | |
[MenuItem("AssetDatabase/OutputLibraryPathsForAsset")] | |
public static void OutputLibraryPathsForAsset() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Text; | |
using UnityEditor; | |
using UnityEditor.Experimental; | |
using UnityEngine; | |
public class LibraryPathsForAsset_2020_2 | |
{ | |
[MenuItem("AssetDatabase/OutputLibraryPathsForAsset")] | |
public static void OutputLibraryPathsForAsset() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
using Unity.Profiling; | |
using UnityEditor; | |
using UnityEditor.Experimental; | |
using UnityEditor.Profiling; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using UnityEngine; | |
using UnityEditor; | |
using System.Text; | |
using UnityEditor.Experimental; | |
public class AssetSizeEstimation | |
{ | |
[MenuItem("AssetDatabase/PrintOutPathToFileSizes")] | |
public static void PrintOutPathToFileSizes() |