Browse Source

Merge branch 'master' of https://github.com/sebas77/Svelto.ECS

tags/2.7
sebas77 5 years ago
parent
commit
449e50feae
2 changed files with 7 additions and 4 deletions
  1. +4
    -0
      README.md
  2. +3
    -4
      Svelto.ECS/DynamicEntityDescriptorInfo.cs

+ 4
- 0
README.md View File

@@ -12,6 +12,10 @@ _Svelto.ECS wasn't born just from the needs of a large team, but also as result
* **Survival Example (Unity)**: https://github.com/sebas77/Svelto-ECS-Example (including article)
* **Vanilla Example (.Net Standard/.Net Core)**: https://github.com/sebas77/Svelto.ECS.Examples.Vanilla (including article)

## Users Examples (software made by Svelto users)

* **Gungi (Unity)**: https://github.com/grovemaster/Unity3D-Game-App

## Articles

**Framework articles:**


+ 3
- 4
Svelto.ECS/DynamicEntityDescriptorInfo.cs View File

@@ -1,5 +1,4 @@
using System;
using Svelto.DataStructures;

namespace Svelto.ECS
{
@@ -32,12 +31,12 @@ namespace Svelto.ECS
{
public DynamicEntityDescriptorInfoRef(IEntityBuilder[] extraEntities)
{
_dynamicDescriptor = new DynamicEntityDescriptorInfo(extraEntities);
_dynamicDescriptor = new DynamicEntityDescriptorInfo<TType>(extraEntities);
}

public IEntityBuilder[] entitiesToBuild { get { return _dynamicDescriptor.entitiesToBuild } }
public IEntityBuilder[] entitiesToBuild { get { return _dynamicDescriptor.entitiesToBuild; } }

DynamicEntityDescriptorInfo<T> _dynamicDescriptor;
DynamicEntityDescriptorInfo<TType> _dynamicDescriptor;
}
public struct EntityInfoView : IEntityStruct


Loading…
Cancel
Save