Skip to content

Commit

Permalink
Merge pull request #49 from techno-dwarf-works/feature/refactoring
Browse files Browse the repository at this point in the history
Version 0.0.46
  • Loading branch information
uurha committed Sep 1, 2024
1 parent b8cc4e7 commit b354f75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Editor/CustomEditors/MultiEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class MultiEditor : Editor
private List<ExtendedEditor> _postEditors = new List<ExtendedEditor>();
private bool _overrideDefault;

private void OnEnable()
protected virtual void OnEnable()
{
try
{
Expand Down Expand Up @@ -123,7 +123,7 @@ public override VisualElement CreateInspectorGUI()
return container;
}

private void OnSerializedObjectTrack(SerializedObject serializedObject)
protected virtual void OnSerializedObjectTrack(SerializedObject serializedObject)
{
for (var i = 0; i < _preEditors.Count; i++)
{
Expand All @@ -136,7 +136,7 @@ private void OnSerializedObjectTrack(SerializedObject serializedObject)
}
}

private void OnDisable()
protected virtual void OnDisable()
{
for (var i = 0; i < _preEditors.Count; i++)
{
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.45",
"version": "0.0.46",
"unity": "2021.3",
"description": " ",
"dependencies": {
Expand Down

0 comments on commit b354f75

Please sign in to comment.