Last active
February 15, 2021 08:35
-
-
Save 5agado/2956ade2fe5db5d5f1c174d062d5c464 to your computer and use it in GitHub Desktop.
Snippets for Grease Pencil Scripting Post
This file contains hidden or 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
import bpy | |
NUM_FRAMES = 30 | |
FRAMES_SPACING = 1 # distance between frames | |
bpy.context.scene.frame_start = 0 | |
bpy.context.scene.frame_end = NUM_FRAMES*FRAMES_SPACING | |
for frame in range(NUM_FRAMES): | |
gp_frame = gp_layer.frames.new(frame*FRAMES_SPACING) | |
# do something with your frame |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment