Skip to content

Commit

Permalink
change some classes to internal
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikoga committed May 4, 2024
1 parent 90339f9 commit 19e180c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Editor/VRM/MergeVRM1SpringBonesPass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ internal class MergeVRM1SpringBonesPass : Pass<MergeVRM1SpringBonesPass>
{
protected override void Execute(ndmf.BuildContext context)
{
var processor = new MergeSpringBoneProcessor();
var processor = new MergeVRM1SpringBoneProcessor();
processor.ProcessVRM1(context);
}
}

public class MergeSpringBoneProcessor
internal class MergeVRM1SpringBoneProcessor
{
public void ProcessVRM1(ndmf.BuildContext context)
{
Expand Down

0 comments on commit 19e180c

Please sign in to comment.