Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Fix Python 3.10 Cast Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Coreforge authored and SE2Dev committed Mar 25, 2022
1 parent 3581a99 commit 6964732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion import_seanim.py
Original file line number Diff line number Diff line change
@@ -118,7 +118,7 @@ def load_seanim(self, context, progress, filepath=""):
ob.animation_data.action.use_fake_user = True

scene = bpy.context.scene
scene.render.fps = anim.header.framerate
scene.render.fps = int(anim.header.framerate)
scene.frame_start = 0 # bpy.context.scene.frame_current
scene.frame_end = scene.frame_start + anim.header.frameCount - 1

0 comments on commit 6964732

Please sign in to comment.