Skip to content

Instantly share code, notes, and snippets.

@mfmfuyu
Last active May 8, 2021 04:47
Show Gist options
  • Save mfmfuyu/7ce43c4a48a88f4ad8c85113c20f25aa to your computer and use it in GitHub Desktop.
Save mfmfuyu/7ce43c4a48a88f4ad8c85113c20f25aa to your computer and use it in GitHub Desktop.
# 全シェイプキーの頭に「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