- Emil Persson @Humus
- Matt Pettineo @mynameismjp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void SetupEnginesAndEntities() | |
{ | |
//The Engines Root is the core of Svelto.ECS. You must NEVER inject the EngineRoot | |
//as it is, therefore the composition root must hold a reference or it will be | |
//GCed. | |
//the UnitySumbmissionEntityViewScheduler is the scheduler that is used by the EnginesRoot to know | |
//when to inject the EntityViews. You shouldn't use a custom one unless you know what you | |
//are doing or you are not working with Unity. | |
_enginesRoot = new EnginesRoot(new UnitySumbmissionEntityViewScheduler()); | |
//Engines root can never be held by anything else than the context itself to avoid leaks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_BURST_FEATURE_FUNCPTR | |
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using System.Reflection.Emit; | |
using System.Runtime.InteropServices; | |
using Unity.Burst; | |
namespace BurstHelper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Concurrent; | |
using System.Runtime.InteropServices; | |
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
BenchmarkRunner.Run<Benchmarks>(); |