renamed package to match github repo
parent
ac81febb82
commit
0b3dcd406d
|
|
@ -287,7 +287,7 @@ public class MCPEditorWindow : EditorWindow
|
|||
else
|
||||
{
|
||||
// If not found locally, try to find it in the package cache
|
||||
string packageName = "com.justinpbarnett.unitymcpserver";
|
||||
string packageName = "com.justinpbarnett.unity-mcp";
|
||||
string packageCachePath = Path.Combine(Application.dataPath, "..", "Library", "PackageCache", packageName);
|
||||
if (Directory.Exists(packageCachePath))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ logging.basicConfig(
|
|||
level=getattr(logging, config.log_level),
|
||||
format=config.log_format
|
||||
)
|
||||
logger = logging.getLogger("UnityMCPServer")
|
||||
logger = logging.getLogger("UnityMCP")
|
||||
|
||||
# Global connection state
|
||||
_unity_connection: UnityConnection = None
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ logging.basicConfig(
|
|||
level=getattr(logging, config.log_level),
|
||||
format=config.log_format
|
||||
)
|
||||
logger = logging.getLogger("UnityMCPServer")
|
||||
logger = logging.getLogger("UnityMCP")
|
||||
|
||||
@dataclass
|
||||
class UnityConnection:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "com.justinpbarnett.unitymcpserver",
|
||||
"name": "com.justinpbarnett.unity-mcp",
|
||||
"version": "0.1.0",
|
||||
"displayName": "Unity MCP Server",
|
||||
"description": "A Unity package to communicate with a local MCP Client via a Python server.",
|
||||
|
|
|
|||
Loading…
Reference in New Issue