From 4e81c2baef7c5943431f7d02ef5725268f644279 Mon Sep 17 00:00:00 2001 From: Alexander Filippov Date: Sun, 17 Aug 2025 05:47:50 +0200 Subject: [PATCH] Rename namespace to avoid conflict with class name. --- Runtime/MeshSafe.cs | 2 +- Runtime/Shazbot.VHACD.asmdef | 2 +- Runtime/VHACD.cs | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Runtime/MeshSafe.cs b/Runtime/MeshSafe.cs index 795b866..faf9034 100644 --- a/Runtime/MeshSafe.cs +++ b/Runtime/MeshSafe.cs @@ -1,6 +1,6 @@ using UnityEngine; -namespace VHACD +namespace Unity.VHACD { public struct MeshSafe { diff --git a/Runtime/Shazbot.VHACD.asmdef b/Runtime/Shazbot.VHACD.asmdef index d655d90..760d055 100644 --- a/Runtime/Shazbot.VHACD.asmdef +++ b/Runtime/Shazbot.VHACD.asmdef @@ -1,6 +1,6 @@ { "name": "Shazbot.VHACD", - "rootNamespace": "VHACD", + "rootNamespace": "Unity.VHACD", "references": [ "GUID:80ed647da8ce73c45b66c239eba0365a" ], diff --git a/Runtime/VHACD.cs b/Runtime/VHACD.cs index 0e8b3de..df6b5dc 100644 --- a/Runtime/VHACD.cs +++ b/Runtime/VHACD.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Runtime.InteropServices; using UnityEngine; -namespace VHACD +namespace Unity.VHACD { #if UTILS [Utils.HideScriptField] diff --git a/package.json b/package.json index 20a11e9..167a099 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ru.shazbot.vhacd", - "version": "1.0.1", + "version": "1.0.2", "displayName": "VHACD", "description": "Based on https://github.com/Unity-Technologies/VHACD", "licensesUrl": "https://git.well-placed.de/InnoLab/VHACD/src/LICENSE.md",