#Do jobs stop the main thread?

1 messages · Page 1 of 1 (latest)

frosty narwhal
#

I'm new to jobs, does it stop the main thread while jobs are running? Like could I process the movement in a job, and handle something else like other inputs without using jobs

undone grail
#

Scheduled jobs will not stop or run on main thread unless you (or something) calls Complete() on them

frosty narwhal
undone grail
#

no

#

Complete finishes the job not starts it

frosty narwhal
#

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

undone ravine
#

it's async operation

#

practically