Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
poi-vrc committed May 2, 2024
1 parent 2514321 commit 86b8e2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Editor/Configurator/Cabinet/DTWardrobeProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,10 @@ public List<IConfigurableOutfit> GetOutfits()
}
return outfits;
}

public void RemoveOutfit(IConfigurableOutfit outfit)
{
throw new System.NotImplementedException();
}
}
}
2 changes: 1 addition & 1 deletion Editor/Inspector/DTCabinetEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public override void OnInspectorGUI()
var window = (DTMainEditorWindow)EditorWindow.GetWindow(typeof(DTMainEditorWindow));
window.titleContent = new GUIContent(t._("tool.name"));
window.Show();
window.SelectCabinet(cabinet);
window.SelectAvatar(cabinet.RootGameObject);
}
}
}
Expand Down

0 comments on commit 86b8e2e

Please sign in to comment.