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.
22 lines
622 B
C#
22 lines
622 B
C#
#if UNITY_2017_1_OR_NEWER
|
|
using PlayFab.PfEditor;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
public class MakeScriptableObject
|
|
{
|
|
[MenuItem("PlayFab/MakePlayFabSharedSettings")]
|
|
public static void MakePlayFabSharedSettings()
|
|
{
|
|
PlayFabSharedSettings asset = ScriptableObject.CreateInstance<PlayFabSharedSettings>();
|
|
|
|
AssetDatabase.CreateAsset(asset, "Assets/PlayFabSdk/Shared/Public/Resources/PlayFabSharedSettings.asset"); // TODO: Path should not be hard coded
|
|
AssetDatabase.SaveAssets();
|
|
|
|
EditorUtility.FocusProjectWindow();
|
|
|
|
Selection.activeObject = asset;
|
|
}
|
|
}
|
|
#endif
|