RyanLua / Satchel

A modern alternative to Roblox's default backpack. Satchel aims to be more customizable and easier to use than the default backpack while still having a "vanilla" feel.
http://satchel.ryanluu.dev
Mozilla Public License 2.0
35 stars 4 forks source link

Replace BindableEvents with Signal #48

Closed Katrist closed 10 months ago

Katrist commented 10 months ago

Description

Improved signalling

Changes Made

Replaced BindableEvents with a Signal module

Checklist

Additional Notes

Signal is far more performant than BindableEvents, which is why this replacement is happening. Also, apologies if I haven't added the module correctly.

Source: https://devforum.roblox.com/t/lua-signal-class-comparison-optimal-goodsignal-class/1387063

Code of Conduct

By submitting this issue, I agree to follow the Code of Conduct.

Katrist commented 10 months ago

Just realized that this wouldn't be possible since I'm assuming you want users to be able to access events like StateChanged in their own scripts. Apologies.