This commit is contained in:
2025-12-17 11:42:57 +09:00
parent 3dba350fc2
commit d4764e304f
7 changed files with 246 additions and 1 deletions

View File

@@ -36,6 +36,11 @@ public class ComponentBase : MonoBehaviour,IPointerClickHandler
}
public virtual void getpath()
{
}
protected void FitCollider()
{
var renderers = GetComponentsInChildren<Renderer>();
@@ -58,5 +63,6 @@ public class ComponentBase : MonoBehaviour,IPointerClickHandler
{
onComponentClicked?.Invoke(componentType, data);
Debug.Log(componentType);
getpath();
}
}