Last active
May 8, 2021 04:47
-
-
Save mfmfuyu/7ce43c4a48a88f4ad8c85113c20f25aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 全シェイプキーの頭に「vrc.」を追加する奴、シェイプキーがあるメッシュ選択してからスクリプト実行する | |
shape_keys = bpy.context.active_object.data.shape_keys.key_blocks | |
for i in range(1, len(shape_keys)): | |
shape_keys[i].name = 'vrc.' + shape_keys[i].name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment