github sschmid/Entitas 0.31.0
Entitas 0.31.0

latest releases: 1.14.1, 1.14.0, 1.13.0...
8 years ago
General
  • Removed obsolete code
Entitas.CodeGenerator
  • Generating components for attributed classes and interfaces
// will automatically generate SomeClassComponent for you
[Core]
public class SomeClass {
    public string name;

    public SomeClass(string name) {
        this.name = name;
    }
}
  • Added support to add empty PoolAttribute to assign component to default pool
// using [Pool] will also add this component to Pools.pool
[Core, Pool]
public class SomeComponent : IComponent {
}
Entitas.Unity.VisualDebugging
  • Added IComponentDrawer which can draw the whole component
Entitas.Unity.VisualDebugging
  • Added EntitasEntityErrorHierarchyIcon to indicate retained entities in the hierarchy
  • Added CharTypeDrawer
  • Fixed components not updating in the inspector (#107)
  • Improved SystemsMonitor and added average line

Entitas-SystemsMonitor

Entitas.Unity.Serialization.Blueprints
  • Fixed finding all BinaryBlueprints even when not loaded
  • Correctly saving Blueprints when setting all BinaryBlueprints
  • Added BlueprintsNotFoundException
  • BinaryBlueprintInspector creates new pools instead of using one of Pools.allPools
  • Fixed pool not shown when entering play-mode while a blueprint was selected in the project view
  • Not caching blueprints when UNITY_EDITOR to enable live edit

Don't miss a new Entitas release

NewReleases is sending notifications on new releases.