Parallel lua in creating games and actors

do i have to learn it ? do the devs like creator of bloxheaven or bee swarm use it ?

Personally, I don’t think you REALLY need it, but if you want to optimise your game a little more then sure.

1 Like

Semi-long answer:
Lua is fast enough that in a solid 99% of use cases, using it may bring little to no difference in performance. The big part about Parallel Lua is it’s multi-processing capabilities, which kind of means separating parts of your processing power to do different things somewhat dynamically, which is not the case normally. People only really use this when their projects require a LOT of processing capacity, even when optimized.

Short answer:
No.

Hope this helps :D!

1 Like