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 8e60da5 commit b8c62b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Editor/VRM/CustomCloneVRM10Object.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace nadena.dev.modular_avatar.core.editor.vrm
{
class CustomCloneVRM10Object : CustomClone<VRM10Object>
internal class CustomCloneVRM10Object : CustomClone<VRM10Object>
{
readonly bool _rename;
readonly bool _copyThumbnail;
Expand Down
2 changes: 1 addition & 1 deletion Editor/VRM/MergeVRM0FirstPersonPass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ protected override void Execute(ndmf.BuildContext context)
}
}

public class MergeVrm0FirstPersonProcessor
internal class MergeVrm0FirstPersonProcessor
{
public void ProcessVRM0(ndmf.BuildContext context)
{
Expand Down
4 changes: 2 additions & 2 deletions Editor/VRM/MergeVRM1FirstPersonPass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ internal class MergeVRM1FirstPersonPass : Pass<MergeVRM1FirstPersonPass>
{
protected override void Execute(ndmf.BuildContext context)
{
var processor = new MergeVrmFirstPersonProcessor();
var processor = new MergeVrm1FirstPersonProcessor();
processor.ProcessVRM1(context);
}
}

public class MergeVrmFirstPersonProcessor
internal class MergeVrm1FirstPersonProcessor
{
public void ProcessVRM1(ndmf.BuildContext context)
{
Expand Down

0 comments on commit b8c62b7

Please sign in to comment.