From beb249fc0ad6923ba5ffaa27e6fea26bd62c4ca1 Mon Sep 17 00:00:00 2001 From: AnimNyan Date: Sun, 12 Dec 2021 20:04:42 +1100 Subject: [PATCH] change default option for fix jaw bone to be true --- DBDFixAnimations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DBDFixAnimations.py b/DBDFixAnimations.py index dec5a5f..d0b58f7 100644 --- a/DBDFixAnimations.py +++ b/DBDFixAnimations.py @@ -3,7 +3,7 @@ #property group to store options that the user can #make true or false class fix_dbd_animations_properties(bpy.types.PropertyGroup): - is_problem_jaw_bone: bpy.props.BoolProperty(name="Fix Jaw Bone for Killer Actions", default = False) + is_problem_jaw_bone: bpy.props.BoolProperty(name="Fix Jaw Bone for Survivor and Killer Actions", default = True) #this is panel 2 as it is the second panel in the psk/psa panel class PSKPSA_PT_fix_dbd_animations_import_panel_2(bpy.types.Panel):