Skip to content

Commit

Permalink
[v0.1.9] SerializeReference extensions dependecy updated
Browse files Browse the repository at this point in the history
  • Loading branch information
g0dzZz-coder committed Apr 29, 2024
1 parent d6dc4d9 commit cc08908
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions Runtime/Components/ComponentDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Depra.Ecs.Entities;
using Depra.Ecs.QoL.Components;
using Depra.Ecs.Worlds;
using Depra.Inspector.SerializedReference;
using Depra.SerializeReference.Extensions;
using UnityEngine;
using static Depra.Ecs.Hybrid.Module;

Expand All @@ -15,7 +15,9 @@ namespace Depra.Ecs.Hybrid.Components
[CreateAssetMenu(menuName = MENU_NAME, fileName = FILE_NAME, order = DEFAULT_ORDER)]
public sealed class ComponentDatabase : ScriptableObject
{
[SubtypeDropdown] [SerializeReference] private IComponent[] _components;
[SerializeReferenceDropdown]
[UnityEngine.SerializeReference]
private IComponent[] _components;

private const string FILE_NAME = nameof(ComponentDatabase);
private const string MENU_NAME = MENU_PATH + FILE_NAME;
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Depra.Ecs.Hybrid.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"rootNamespace": "Depra.Ecs.Hybrid",
"references": [
"GUID:d4d2d3673d7d2a146884ebf91bc9e015",
"GUID:5c3cbf54bce652248b5d0c693909f476"
"GUID:d4770dd4eaf4dc9469ce95e304152de6"
],
"includePlatforms": [],
"excludePlatforms": [],
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "com.depra.ecs.hybrid",
"version": "0.1.8",
"version": "0.1.9",
"displayName": "Depra.Ecs.Hybrid",
"description": "Unity Conversion Workflow for Depra.Ecs. Easy convert GameObjects to Entity.",
"unity": "2022.3",
"license": "Apache-2.0",
"dependencies": {
"com.depra.ecs.unity": "0.2.1",
"com.depra.inspector.unity.serialized-reference": "0.0.6"
"com.depra.ecs.unity": "0.2.6",
"com.depra.serialize-reference.extensions": "0.0.10"
},
"keywords": [
"depra",
Expand Down

0 comments on commit cc08908

Please sign in to comment.