From e9365e8f754a5812d7f693520a60f5fe2b414e8f Mon Sep 17 00:00:00 2001 From: Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> Date: Sat, 2 Aug 2025 14:04:32 +0900 Subject: [PATCH] Create module_dependencies.graphviz --- .../sketch/module_dependencies.graphviz | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Documentation~/common/sketch/module_dependencies.graphviz diff --git a/Documentation~/common/sketch/module_dependencies.graphviz b/Documentation~/common/sketch/module_dependencies.graphviz new file mode 100644 index 0000000..65d3e4b --- /dev/null +++ b/Documentation~/common/sketch/module_dependencies.graphviz @@ -0,0 +1,46 @@ +digraph deps { + ndmf [label="NDMF",shape=box] + sdk3a [label="VRChat SDK",shape=box] + unigltf [label="UniGLTF",shape=box] + unityeditor [label="UnityEditor", shape=box] + unityengine [label="UnityEngine", shape=box] + ui + transfront + transform + serialization + backlink_component + + ui -> ndmf [label="vd-only"] + ui -> sdk3a + ui -> unigltf [label="vd-only"] + ui -> transfront + ui -> transform + ui -> serialization + ui -> backlink_component + ui -> unityeditor + ui -> unityengine + + transfront -> transform + transfront -> serialization + + transform -> serialization + transform -> unity_editor_utility + transform -> env_vrchat + transform -> env_ndmf + transform -> env_common + + env_vrchat -> env_common + env_vrchat -> sdk3a + env_ndmf -> env_common + env_ndmf -> ndmf + env_common -> marker + + serialization -> unigltf + serialization -> backlink_component + serialization -> unity_editor_utility + + unity_editor_utility -> unityeditor + env_common -> unityengine + backlink_component -> unityeditor + unityeditor -> unityengine +}