Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #58 from uurha/dev
Browse files Browse the repository at this point in the history
Update package.json
  • Loading branch information
uurha committed Apr 10, 2023
1 parent 354d03d commit ef49e9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Editor/EditorAddons/Drawers/Select/BaseSelectTypeDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected override WrapperCollection<SelectTypeWrapper> GenerateCollection()
private void LazyGetAllInheritedType(Type baseType)
{
if (_reflectionTypes != null) return;
_reflectionTypes = ReflectionExtensions.GetAllInheritedType(baseType).Cast<object>().ToList();
_reflectionTypes = baseType.GetAllInheritedType().Cast<object>().ToList();
_reflectionTypes.Insert(0, null);
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "com.uurha.betterattributes",
"displayName": "Better Attributes",
"version": "1.6.3",
"version": "1.6.5",
"unity": "2018.3",
"description": "Unity attributes, allows to serialize interfaces, draw handles for Vector3/Vector2/Quaternion/Bounds, create read only fields.",
"dependencies": {
"com.uurha.bettereditortools" : "0.3.1"
"com.uurha.bettereditortools" : "0.3.2"
},
"author": {
"name": "Arcueid D'athemon",
Expand Down

0 comments on commit ef49e9b

Please sign in to comment.