
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
31 lines
786 B
C#
31 lines
786 B
C#
using UnityEngine;
|
|
|
|
namespace UnityEditor.Build.Pipeline.Utilities
|
|
{
|
|
static class PlayerSettingsApi
|
|
{
|
|
static SerializedObject m_Target;
|
|
#if UNITY_2020_1_OR_NEWER
|
|
static SerializedProperty m_NumberOfMipsStripped;
|
|
#endif
|
|
|
|
static PlayerSettingsApi()
|
|
{
|
|
var playerSettings = AssetDatabase.LoadAllAssetsAtPath("ProjectSettings/ProjectSettings.asset");
|
|
#if UNITY_2020_1_OR_NEWER
|
|
m_Target = new SerializedObject(playerSettings);
|
|
m_NumberOfMipsStripped = m_Target.FindProperty("numberOfMipsStripped");
|
|
#endif
|
|
}
|
|
|
|
#if UNITY_2020_1_OR_NEWER
|
|
internal static int GetNumberOfMipsStripped()
|
|
{
|
|
m_Target.Update();
|
|
return m_NumberOfMipsStripped.intValue;
|
|
}
|
|
|
|
#endif
|
|
}
|
|
}
|