Compare commits

..

3 Commits

Author SHA1 Message Date
DCFApixels
21b891b44c up version to 0.3.4 2025-03-29 16:15:42 +08:00
DCFApixels
aff9c033d1 update MetaIDs 2025-03-19 16:30:51 +08:00
DCFApixels
516da428dd update 2025-03-17 13:05:32 +08:00
3 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@
"displayName": "DragonECS-Graphs",
"description": "Entity Graphs for DragonECS",
"unity": "2020.3",
"version": "0.3.3",
"version": "0.3.4",
"repository": {
"type": "git",
"url": "https://github.com/DCFApixels/DragonECS-Graphs.git"

View File

@ -7,7 +7,7 @@ namespace DCFApixels.DragonECS
[MetaGroup(EcsConsts.PACK_GROUP, EcsConsts.WORLDS_GROUP)]
[MetaDescription(EcsConsts.AUTHOR, "Inherits EcsWorld without extending its functionality and is used for specific injections. Can be used as argument to EcsWorld.CreateGraph(new " + nameof(EcsGraphWorld) + "()) and to store relation entity.")]
[DebuggerTypeProxy(typeof(DebuggerProxy))]
[MetaID("ECC4CF479301897718600925B00A7DB4")]
[MetaID("DragonECS_ECC4CF479301897718600925B00A7DB4")]
public sealed class EcsGraphWorld : EcsWorld, IInjectionUnit, IInjectionBlock
{
public EcsGraphWorld() : base() { }

View File

@ -1,6 +1,7 @@
#if DISABLE_DEBUG
#undef DEBUG
#endif
using DCFApixels.DragonECS.Core;
using DCFApixels.DragonECS.Graphs.Internal;
namespace DCFApixels.DragonECS