Preface: I have about 7-8 months of experience with Unity, and about 10 months of experience with C# and coding in general, with very little previous background with other languages and general compsci.
After having spent a frustrating day follow instructions and tutorials from Unity sources (your youtube channel etc) and time and time again encountering outdated information, I would like to recommend that you actively hunt down and remove any and all outdated sources of information on this system. So many examples that I found reference design patterns or API calls that have been changed or are deprecated, or simply feature dead links, making it extremely frustrating to attempt to figure out how you intend for this system to actually be used.
(example: Entity Component System - Unity Learn)
(example2 - first two links are dead: New SubScene & ConvertToEntity workflows )
There are also a fair few things that just make me feel plain dumb and like I’m missing something. Take the examples in the ECS git repository. They contain lots of examples about how to use the system. However, there’s no .csproj file to be found anywhere, nor are there any .unitypackage files for importing, so how am I actually supposed to run the examples to learn from them? Do I have to manually import all the files into an existing project? Or are they not intended to be imported at all? The repository contains clear information about how to set a project up to use ECS and the burst compiler, but after that you’re on your own.
Maybe I’m simply not the target demographic for a system like this. I probably lack a fair bit of background information and knowledge necessary to properly understand and utilize the information and systems provided. But I guess that could still be valuable feedback. I suspect I am far from the only Unity user without a strong compsci or programming background. If this is the case, that this system is being designed specifically for users with strong compsci background and programming experience, it should probably be clearly marked as such, so that others like me know to simply put it aside for when they’ve gained more experience and understanding.
I apologize for coming off as somewhat whiny. It’s been a frustrating day. However, I do think that my core point is somewhat important - clarity and consistency of official information matters, especially with advanced systems such as these.