renamed package to match github repo

main
Justin Barnett 2025-03-18 16:06:48 -04:00
parent ac81febb82
commit 0b3dcd406d
4 changed files with 4 additions and 4 deletions

View File

@ -287,7 +287,7 @@ public class MCPEditorWindow : EditorWindow
else else
{ {
// If not found locally, try to find it in the package cache // 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); string packageCachePath = Path.Combine(Application.dataPath, "..", "Library", "PackageCache", packageName);
if (Directory.Exists(packageCachePath)) if (Directory.Exists(packageCachePath))
{ {

View File

@ -12,7 +12,7 @@ logging.basicConfig(
level=getattr(logging, config.log_level), level=getattr(logging, config.log_level),
format=config.log_format format=config.log_format
) )
logger = logging.getLogger("UnityMCPServer") logger = logging.getLogger("UnityMCP")
# Global connection state # Global connection state
_unity_connection: UnityConnection = None _unity_connection: UnityConnection = None

View File

@ -10,7 +10,7 @@ logging.basicConfig(
level=getattr(logging, config.log_level), level=getattr(logging, config.log_level),
format=config.log_format format=config.log_format
) )
logger = logging.getLogger("UnityMCPServer") logger = logging.getLogger("UnityMCP")
@dataclass @dataclass
class UnityConnection: class UnityConnection:

View File

@ -1,5 +1,5 @@
{ {
"name": "com.justinpbarnett.unitymcpserver", "name": "com.justinpbarnett.unity-mcp",
"version": "0.1.0", "version": "0.1.0",
"displayName": "Unity MCP Server", "displayName": "Unity MCP Server",
"description": "A Unity package to communicate with a local MCP Client via a Python server.", "description": "A Unity package to communicate with a local MCP Client via a Python server.",