File size: 303 Bytes
ce81a16
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Quantum
{
	public partial struct HFSMAgent
	{
		// Used to setup info on the Unity debugger
		public string GetRootAssetName(Frame frame) => frame.FindAsset<HFSMRoot>(Data.Root.Id).Path;

		public AIConfig GetConfig(Frame frame)
		{
			return frame.FindAsset<AIConfig>(Config.Id);
		}
	}
}