com.elestrago.unity.entitas-redux 3.7.7 → 3.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  ---
4
4
 
5
+ ## [3.7.9](https://gitlab.com/elestrago-pkg/entitas-redux/-/tags/3.7.9)
6
+
7
+ ### Added
8
+
9
+ - Implicite convertion for `EntityRef`
10
+
11
+ ---
12
+
13
+ ## [3.7.8](https://gitlab.com/elestrago-pkg/entitas-redux/-/tags/3.7.8)
14
+
15
+ ### Added
16
+
17
+ - Add `Ref` property to generated entity
18
+
19
+ ---
20
+
5
21
  ## [3.7.7](https://gitlab.com/elestrago-pkg/entitas-redux/-/tags/3.7.7)
6
22
 
7
23
  ### Added
@@ -18,13 +18,6 @@ namespace JCMG.EntitasRedux
18
18
 
19
19
  public TEntity Entity => _entity;
20
20
 
21
-
22
21
  public static implicit operator EntityRef<TEntity>(TEntity entity) => new(entity);
23
22
  }
24
-
25
- public static class EntityRefExtensions
26
- {
27
- public static EntityRef<TEntity> Ref<TEntity>(TEntity entity) where TEntity : class, IEntity
28
- => new(entity);
29
- }
30
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.elestrago.unity.entitas-redux",
3
- "version": "3.7.7",
3
+ "version": "3.7.9",
4
4
  "displayName": "JCMG Entitas Redux",
5
5
  "description": "Entitas Redux is an fast, accessible, and feature-rich ECS framework for Unity. It leverages code generation and an extensible plugin framework to make life easier for developers.",
6
6
  "category": "Unity",