Skip to content

Commit

Permalink
Merge pull request #24 from techno-dwarf-works/feature/refactoring
Browse files Browse the repository at this point in the history
Version 0.0.21
  • Loading branch information
OpOpYaDev authored and OpOpYaDev committed Jul 15, 2024
1 parent bb149dc commit ae24762
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Editor/Extensions/AnimatorControllerExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static string[] GetAllBoolNames(this AnimatorController self)
return self.GetParameterNamesOfType(AnimatorControllerParameterType.Bool);
}

private static string[] GetAllTriggerNames(this AnimatorController self)
public static string[] GetAllTriggerNames(this AnimatorController self)
{
return self.GetParameterNamesOfType(AnimatorControllerParameterType.Trigger);
}
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Extensions/AnimatorExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static string[] GetAllBoolNames(this Animator self)
return self.GetParameterNamesOfType(AnimatorControllerParameterType.Bool);
}

private static string[] GetAllTriggerNames(this Animator self)
public static string[] GetAllTriggerNames(this Animator self)
{
return self.GetParameterNamesOfType(AnimatorControllerParameterType.Trigger);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.tdw.better.commons",
"displayName": "Better Commons",
"version": "0.0.20",
"version": "0.0.21",
"unity": "2021.3",
"description": " ",
"dependencies": {
Expand Down

0 comments on commit ae24762

Please sign in to comment.