File tree 2 files changed +1
-12
lines changed
2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change 8
8
<PackageLicenseUrl >https://github.com/Byteron/RelEcs/blob/main/LICENSE</PackageLicenseUrl >
9
9
<Nullable >enable</Nullable >
10
10
<WarningsAsErrors >Nullable</WarningsAsErrors >
11
+ <PackageVersion >1.5.1</PackageVersion >
11
12
</PropertyGroup >
12
13
</Project >
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ public sealed class World
13
13
14
14
readonly Archetypes _archetypes = new ( ) ;
15
15
16
- internal readonly List < ( Type , TimeSpan ) > SystemExecutionTimes = new ( ) ;
17
-
18
16
readonly TriggerLifeTimeSystem _triggerLifeTimeSystem = new ( ) ;
19
17
20
18
public WorldInfo Info => _worldInfo ;
@@ -385,14 +383,7 @@ public void Tick()
385
383
_worldInfo . ElementCount = _archetypes . Tables [ _archetypes . Meta [ _world . Identity . Id ] . TableId ] . Types . Count ;
386
384
_worldInfo . CachedQueryCount = _archetypes . Queries . Count ;
387
385
388
- _worldInfo . SystemCount = SystemExecutionTimes . Count ;
389
-
390
- _worldInfo . SystemExecutionTimes . Clear ( ) ;
391
- _worldInfo . SystemExecutionTimes . AddRange ( SystemExecutionTimes ) ;
392
-
393
386
_triggerLifeTimeSystem . Run ( this ) ;
394
-
395
- SystemExecutionTimes . Clear ( ) ;
396
387
}
397
388
398
389
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
@@ -413,14 +404,11 @@ public sealed class WorldInfo
413
404
414
405
// public int RelationCount;
415
406
public int ElementCount ;
416
- public int SystemCount ;
417
- public List < ( Type , TimeSpan ) > SystemExecutionTimes ;
418
407
public int CachedQueryCount ;
419
408
420
409
public WorldInfo ( int id )
421
410
{
422
411
WorldId = id ;
423
- SystemExecutionTimes = new List < ( Type , TimeSpan ) > ( ) ;
424
412
}
425
413
}
426
414
}
You can’t perform that action at this time.
0 commit comments