diff options
| author | yum <yum.food.vr@gmail.com> | 2025-07-23 22:53:08 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-07-23 22:53:08 -0700 |
| commit | 4539f87e36cb3ca554e1e174c19206b552107c57 (patch) | |
| tree | 6f9aca818989773cc10f3c465224a07f847eb279 /Scripts/remove_audio_sources.py | |
| parent | f6b93a20d754579008076e85f5c0a97e1bcbc258 (diff) | |
Delete unused filesv1.0.0-beta00
Diffstat (limited to 'Scripts/remove_audio_sources.py')
| -rw-r--r-- | Scripts/remove_audio_sources.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Scripts/remove_audio_sources.py b/Scripts/remove_audio_sources.py deleted file mode 100644 index 0486169..0000000 --- a/Scripts/remove_audio_sources.py +++ /dev/null @@ -1,25 +0,0 @@ -import argparse -import libunity -import sys - -def removeAudioSources(path: str): - parser = libunity.MulticoreUnityParser() - anim = parser.parseFile(path) - anchors = set() - node = anim.popNodeOfClass("82") - while node: - print("Killed audio source") - anchors.add(node.anchor) - node = anim.popNodeOfClass("82") - for node in anim.nodes: - anim.scrubReferencesByValue(node, values=anchors) - with open(path, "w", encoding="utf-8") as f: - f.write(libunity.unityYamlToString(anim.nodes)) - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("--prefab", type=str, help="Path to .prefab file.") - args = parser.parse_args() - - removeAudioSources(args.prefab) - |
