Hello,every one! When I use python to set name of the blendshape.It seems doesn‘t work in the Edit mode.But it works in the Animate mode.I want to know how can change the name in the edit mode too?
from typing import Optional
import c4d
def main() -> None:
pm=op.GetTag(c4d.Tposemorph,0)
pose=pm.GetMorph(1)
pose.SetName("xxx")
if __name__ == '__main__':
main()
Thank you all!