#Do jobs stop the main thread?
1 messages · Page 1 of 1 (latest)
Scheduled jobs will not stop or run on main thread unless you (or something) calls Complete() on them
Don't they only run on .Complete() ?
Is there a way to get around it? process movement in a open thread and always keep the main one alive
Or how much would it really matter, does stuff like that need to be ran at the exact same time or just same frame
just Schedule job and then work with it as if it's Task
it's async operation
practically