Tekitoumen opened this issue on Jul 20, 2022 · 7 posts
Tekitoumen posted Wed, 20 July 2022 at 11:26 PM
Hi.
I want to select a frame of a moving model (animation) and edit the model.
(For example, I want to give the model a walking animation and do something that makes the breathing rougher every frame)
It takes time to manually edit the model frame by frame.
Therefore, I want to automate it with a Python script.
1. Select the first frame
2. Select a chest
3. Edit the shape of the chest
4. Select the second frame
5. Select a chest
6. Select the shape of the chest
・・・repert
I want to know if the script can recognize the model frame by frame and edit the image.
scene.SetFrame(frame_num)
actors = scene.Actors()
actor = scene.Actor("Chest")
・・・
I repeated the following script and edited the model frame by frame but it didn't work.
The edited content given in the first frame was reflected in all frames.
If you know the right way, please let me know.
Thank you.