Skip to content

Commit

Permalink
switch frameClampingStartFrame and frameClampingEndFrame to proper ty…
Browse files Browse the repository at this point in the history
…pe (int)
  • Loading branch information
DoctorPresto committed Feb 18, 2024
1 parent 41975c1 commit 171138f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions i_scene_cp77_gltf/exporters/glb_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ def export_cyberpunk_glb(context, filepath, export_poses, export_visible, limit_
if "frameClamping" not in action:
action["frameClamping"] = True
if "frameClampingStartFrame" not in action:
action["frameClampingStartFrame"] = '-1'
action["frameClampingStartFrame"] = -1
if "frameClampingEndFrame" not in action:
action["frameClampingEndFrame"] = '-1'
action["frameClampingEndFrame"] = -1
if "numExtraJoints" not in action:
action["numExtraJoints"] = ''
action["numExtraJoints"] = 0
if "numeExtraTracks" not in action:
action["numeExtraTracks"] = ''
action["numeExtraTracks"] = 0
if "constTrackKeys" not in action:
action["constTrackKeys"] = []
if "trackKeys" not in action:
Expand Down
Binary file added i_scene_cp77_gltf/resources/rigs/woman_base.zip
Binary file not shown.

0 comments on commit 171138f

Please sign in to comment.