Search Unity

c# job system if can load resources?

Discussion in 'C# Job System' started by dreamerflyer, Mar 4, 2018.

  1. dreamerflyer

    dreamerflyer

    Joined:
    Jun 11, 2011
    Posts:
    927
    Hi all,is possible to load resources by this c# job system?
     
  2. IsaiahKelly

    IsaiahKelly

    Joined:
    Nov 11, 2012
    Posts:
    418
    The new C# job system is just a new way to do the same kinds of things we did before, but in a much more optimized way for big performance gains. The job system has nothing to do with scene streaming or resource loading directly. It's just a system to help make these tasks much faster, or eliminate them entirely. However, there is a big learning curve to all of this. So please watch the videos below to get a fundamental understanding of how it all works:



     
  3. dreamerflyer

    dreamerflyer

    Joined:
    Jun 11, 2011
    Posts:
    927
    OK,This would use world streamer plugins to do
     
  4. OswaldHurlem

    OswaldHurlem

    Joined:
    Jan 6, 2017
    Posts:
    40
    If you mean Resource.Load? Probably not, since it affects Global Unity State. But almost all Unity API calls are checked to make sure they are on the main thread... go ahead and try it!