Skip to content

Commit

Permalink
chore: default to no blendshapes
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonHough committed Nov 4, 2024
1 parent 298b9d7 commit 7aabadf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Runtime/Core/Scripts/Data/ScriptableObjects/AvatarConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ public class AvatarConfig : ScriptableObject
new ShaderPropertyMapping("occlusionTexture_strength", "", ShaderPropertyType.Float),
};

public List<string> MorphTargets = new List<string>();
public List<string> MorphTargets = new List<string>
{
"none",
};
}
}

0 comments on commit 7aabadf

Please sign in to comment.