sngdan
April 28, 2018, 12:55pm
1
does ecs work with the 2018.1.0f1 release?
Just want to check before downloading as I somehow failed to read this explicitly anywhere…
how do i install it for 2018.1.0f1? cant seem to find it anywhere!
sngdan
April 29, 2018, 8:42pm
4
It is still considered “beta” - you will find it in the beta area
Look around this forum for instructions, but in short:
Edit Packages/manifest.json to this:
{
"dependencies": {
"com.unity.entities": "0.0.11",
},
"testables": [
"com.unity.collections",
"com.unity.entities",
"com.unity.jobs"
],
"registry": "https://staging-packages.unity.com"
}
Enable .NET 4.6 (under player settings)
Close Unity
Delete the contents of your Library/ folder
Re-open Unity
Open Package Manager and make sure Entities show up there
Make sure you have a recent version of Visual Studio 2017 installed (15.6.7 is the latest).
1 Like
Arowx
April 30, 2018, 3:20pm
6
siggigg:
Look around this forum for instructions, but in short:
Edit Packages/manifest.json to this:
{
"dependencies": {
"com.unity.entities": "0.0.11",
},
"testables": [
"com.unity.collections",
"com.unity.entities",
"com.unity.jobs"
],
"registry": "https://staging-packages.unity.com"
}
Enable .NET 4.6 (under player settings)
Close Unity
Delete the contents of your Library/ folder
Re-open Unity
Open Package Manager and make sure Entities show up there
Make sure you have a recent version of Visual Studio 2017 installed (15.6.7 is the latest).
Isn’t this the kind of thing that should be in Unity or the new Unity Hub as a tick box/toggle button?
PhilSA
April 30, 2018, 4:58pm
7
They’ll probably make the entities package readily available through the package manager soon without requiring any special manipulation, but for now the ECS should be considered “pre-alpha” and could change completely at any time, so it’s not ready for a real public release yet
siggigg:
Look around this forum for instructions, but in short:
Edit Packages/manifest.json to this:
{
"dependencies": {
"com.unity.entities": "0.0.11",
},
"testables": [
"com.unity.collections",
"com.unity.entities",
"com.unity.jobs"
],
"registry": "https://staging-packages.unity.com"
}
Enable .NET 4.6 (under player settings)
Close Unity
Delete the contents of your Library/ folder
Re-open Unity
Open Package Manager and make sure Entities show up there
Make sure you have a recent version of Visual Studio 2017 installed (15.6.7 is the latest).
What about installing the Burst compiler package? Does that get installed along with the Entities package?