Browse Source

fix compiling issues with some version of unity

renamed file
pull/60/head
sebas77 4 years ago
parent
commit
b104e8c5f3
7 changed files with 17 additions and 8 deletions
  1. +1
    -1
      Svelto.Common
  2. +1
    -0
      Svelto.ECS/Core/CheckEntityUtilities.cs
  3. +0
    -1
      Svelto.ECS/Extensions/Unity/DOTS/UECS/SubmissionEngine.cs
  4. +0
    -1
      Svelto.ECS/Extensions/Unity/DOTS/UECS/SveltoUECSEntitiesSubmissionGroup.cs
  5. +12
    -2
      Svelto.ECS/Svelto.ECS.asmdef
  6. +2
    -2
      Svelto.ECS/package.json
  7. +1
    -1
      Svelto.ECS/version.json

+ 1
- 1
Svelto.Common

@@ -1 +1 @@
Subproject commit 33e1d93b187a07825fb53f94d537fc66ffa0a819
Subproject commit 1b2f3cb581a502aa6879b8d6afa4ae83a0fe0391

+ 1
- 0
Svelto.ECS/Core/CheckEntityUtilities.cs View File

@@ -1,5 +1,6 @@
#if !DEBUG || PROFILE_SVELTO
#define DONT_USE
using System.Diagnostics;
#endif
using System;
using System.Collections.Generic;


Svelto.ECS/Extensions/Unity/DOTS/UECS/IUECSSubmissionEngine.cs → Svelto.ECS/Extensions/Unity/DOTS/UECS/SubmissionEngine.cs View File

@@ -17,7 +17,6 @@ namespace Svelto.ECS.Extensions.Unity
}

public EntityCommandBuffer ECB { get; internal set; }
protected EntityManager EM => this.EntityManager;

public string name => TypeToString.Name(this);
}

+ 0
- 1
Svelto.ECS/Extensions/Unity/DOTS/UECS/SveltoUECSEntitiesSubmissionGroup.cs View File

@@ -1,5 +1,4 @@
#if UNITY_ECS
using System.Collections;
using Svelto.Common;
using Svelto.DataStructures;
using Svelto.ECS.Schedulers;


+ 12
- 2
Svelto.ECS/Svelto.ECS.asmdef View File

@@ -18,6 +18,11 @@
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [
{
"name": "Unity",
"expression": "2019.3",
"define": "UNITY_JOBS"
},
{
"name": "com.unity.entities",
"expression": "",
@@ -49,8 +54,13 @@
"define": "UNITY_NATIVE"
},
{
"name": "Unity",
"expression": "2019.3.0",
"name": "com.unity.burst",
"expression": "",
"define": "UNITY_JOBS"
},
{
"name": "com.sebaslab.svelto.ecs",
"expression": "",
"define": "UNITY_JOBS"
}
],


+ 2
- 2
Svelto.ECS/package.json View File

@@ -3,13 +3,13 @@
"category": "Svelto",
"description": "Svelto ECS C# Lightweight Data Oriented Entity Component System Framework",
"dependencies": {
"com.sebaslab.svelto.common": "3.1.0"
"com.sebaslab.svelto.common": "3.1.1"
},
"keywords": [
"svelto"
],
"name": "com.sebaslab.svelto.ecs",
"version": "3.1.0",
"version": "3.1.1",
"type": "library",
"unity": "2019.3"
}

+ 1
- 1
Svelto.ECS/version.json View File

@@ -1,3 +1,3 @@
{
"version": "3.1.0"
"version": "3.1.1"
}

Loading…
Cancel
Save