Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Editor/Builders/AssetsItemBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ private AdvancedDropdownItem GetOrCreateParentItem(AdvancedDropdownItem root, st
return item;
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Builders/ClassesItemBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ private AdvancedDropdownItem GetOrCreateParentItem(Type type, AdvancedDropdownIt
return splitItem;
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Builders/SceneItemBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ private void CreateItemsRecursive(Transform transform, AdvancedDropdownItem pare
parent.AddChild(advancedDropdownItem);
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Drawers/CustomObjectDrawer.Styles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ public static GUIStyle SelectedLabelStyle
}
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Drawers/CustomObjectDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ private void HandleKeyDown()
}
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Drawers/IReferenceDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ internal interface IReferenceDrawer
float GetHeight();
void OnGUI(Rect position);
}
}
}
2 changes: 1 addition & 1 deletion Editor/Drawers/RawReferenceDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ protected override void OnPropertiesClicked()
}
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Drawers/ReferenceDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ private void OnItemSelected(ReferenceMode mode, object reference)

protected abstract void OnPropertiesClicked();
}
}
}
2 changes: 1 addition & 1 deletion Editor/Drawers/UnityReferenceDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ protected override void OnPropertiesClicked()
PropertyEditorUtility.Show(UnityReferenceProperty.objectReferenceValue);
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Items/AssetDropdownItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ object IDropdownItem.GetValue()
return AssetDatabase.LoadAssetAtPath<Object>(path);
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Items/ClassDropdownItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ object IDropdownItem.GetValue()
return Activator.CreateInstance(type);
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Items/IDropdownItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ internal interface IDropdownItem
internal ReferenceMode Mode { get; }
object GetValue();
}
}
}
2 changes: 1 addition & 1 deletion Editor/Items/SceneDropdownItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ object IDropdownItem.GetValue()
return component;
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/SerializableInterfacePropertyDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ GUIContent label
}
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Utilities/AdvancedDropdownItemWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ public AdvancedDropdownItemWrapper(string name)
return this;
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Utilities/IconUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ public static Texture2D GetIconForObject(Object obj)
}
#endif
}
}
}
2 changes: 1 addition & 1 deletion Editor/Utilities/PropertyEditorUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ internal static void Show(Object obj)
});
}
}
}
}
2 changes: 1 addition & 1 deletion Editor/Utilities/SerializableInterfaceAdvancedDropdown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ protected override void ItemSelected(AdvancedDropdownItem item)
}
}
}
}
}
2 changes: 1 addition & 1 deletion Runtime/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
using System.Runtime.CompilerServices;

[assembly:InternalsVisibleTo("TNRD.SerializableInterface.Editor")]
[assembly:InternalsVisibleTo("TNRD.SerializableInterface.Editor")]
2 changes: 1 addition & 1 deletion Runtime/ISerializableInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ internal interface ISerializableInterface
{
internal object GetRawReference();
}
}
}
2 changes: 1 addition & 1 deletion Runtime/ReferenceMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ internal enum ReferenceMode
Raw,
Unity
}
}
}
2 changes: 1 addition & 1 deletion Runtime/SerializableInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ object ISerializableInterface.GetRawReference()
return rawReference;
}
}
}
}