Skip to content

Commit

Permalink
Fixed an issue for obfuscation of VRC animator play audio state behavior
Browse files Browse the repository at this point in the history
Added AvatarVersion parameter to exclusion list
Layers, state machines, states, blend trees will be obfuscated by default
Code refactoring
  • Loading branch information
Esska committed May 11, 2024
1 parent 37fd227 commit 5f88c4b
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 160 deletions.
8 changes: 1 addition & 7 deletions Editor/AV3ObfuscatorEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public override void OnInspectorGUI() {
GUILayout.BeginVertical(GUI.skin.box);
{
EditorGUILayout.LabelField("- Transforms (entire hierarchy)");
EditorGUILayout.LabelField("- Controllers");
EditorGUILayout.LabelField("- Controllers, Layers, State Machines, States, Blend Trees");
EditorGUILayout.LabelField("- Avatar");
EditorGUILayout.LabelField("- Avatar Masks");
EditorGUILayout.LabelField("- Animation Clips");
Expand All @@ -123,12 +123,6 @@ public override void OnInspectorGUI() {

if (obfus.config.showOptionalObfuscation) {

GUILayout.BeginVertical(GUI.skin.box);
{
obfus.config.obfuscateLayers = EditorGUILayout.ToggleLeft(new GUIContent("Layers, State Machines, States, Blend Trees", "Layers, State Machines, States, Blend Trees of any used Controller"), obfus.config.obfuscateLayers);
}
GUILayout.EndVertical();

GUILayout.BeginVertical(GUI.skin.box);
{
obfus.config.obfuscateExpressionParameters = EditorGUILayout.ToggleLeft(new GUIContent("VRC Expression Parameters + Menus", "VRC Expression Parameters, Menu and Submenus"), obfus.config.obfuscateExpressionParameters);
Expand Down
Loading

0 comments on commit 5f88c4b

Please sign in to comment.