We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IvanMurzak/Unity-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
DataFieldPopulationTestScriptableObject.cs•686 B
using System.Collections.Generic;
using UnityEngine;
namespace com.IvanMurzak.Unity.MCP.TestFiles
{
public class DataFieldPopulationTestScriptableObject : ScriptableObject
{
public Sprite spriteField;
public Material materialField;
public GameObject gameObjectField;
public Texture2D textureField;
public ScriptableObject scriptableObjectField;
public GameObject prefabField;
public Material[] materialArray;
public GameObject[] gameObjectArray;
public List<Material> materialList;
public List<GameObject> gameObjectList;
public int intField;
public string stringField;
}
}