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.
38 lines
1.4 KiB
C#
38 lines
1.4 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using System.Linq;
|
|
#if UNITY_EDITOR
|
|
using UnityEditor;
|
|
#endif
|
|
|
|
namespace MoreMountains.FeedbacksForThirdParty
|
|
{
|
|
#if UNITY_EDITOR
|
|
/// <summary>
|
|
/// This class lets you specify (in code, by editing it) symbols that will be added to the build settings' define symbols list automatically
|
|
/// </summary>
|
|
[InitializeOnLoad]
|
|
public class NiceVibrationsDefineSymbols
|
|
{
|
|
/// <summary>
|
|
/// A list of all the symbols you want added to the build settings
|
|
/// </summary>
|
|
public static readonly string[] Symbols = new string[]
|
|
{
|
|
"MOREMOUNTAINS_NICEVIBRATIONS_INSTALLED"
|
|
};
|
|
|
|
/// <summary>
|
|
/// As soon as this class has finished compiling, adds the specified define symbols to the build settings
|
|
/// </summary>
|
|
static NiceVibrationsDefineSymbols()
|
|
{
|
|
string scriptingDefinesString = PlayerSettings.GetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup);
|
|
List<string> scriptingDefinesStringList = scriptingDefinesString.Split(';').ToList();
|
|
scriptingDefinesStringList.AddRange(Symbols.Except(scriptingDefinesStringList));
|
|
PlayerSettings.SetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup, string.Join(";", scriptingDefinesStringList.ToArray()));
|
|
}
|
|
}
|
|
#endif
|
|
} |