unity-mcp/TestProjects/UnityMCPTests/Assets/Scripts/TestAsmdef/CustomComponent.cs

18 lines
404 B
C#

using UnityEngine;
namespace TestNamespace
{
public class CustomComponent : MonoBehaviour
{
[SerializeField]
private string customText = "Hello from custom asmdef!";
[SerializeField]
private float customFloat = 42.0f;
void Start()
{
Debug.Log($"CustomComponent started: {customText}, value: {customFloat}");
}
}
}