minesweeper_game/Library/PackageCache/com.unity.ai.navigation@c74b2724ed42/Tests/Editor/PrefabSavingUtil.cs
2025-03-15 14:30:26 -04:00

22 lines
617 B
C#

using System;
using System.Reflection;
using UnityEditor.SceneManagement;
namespace Unity.AI.Navigation.Editor.Tests
{
class PrefabSavingUtil
{
public static void SavePrefab(PrefabStage prefabStage)
{
if (prefabStage == null)
throw new ArgumentNullException();
var savePrefabMethod = prefabStage.GetType().GetMethod("SavePrefab", BindingFlags.NonPublic | BindingFlags.Instance);
if (savePrefabMethod == null)
throw new InvalidOperationException();
savePrefabMethod.Invoke(prefabStage, null);
}
}
}