runic
Rroblox-ts
•Created by Dadamo on 4/20/2025 in #help
Readonly Charm atom
const myReadonly = () => myAtom();
19 replies
Rroblox-ts
•Created by Dadamo on 4/20/2025 in #help
Readonly Charm atom
just do what alice said
19 replies
Rroblox-ts
•Created by CriShoux on 4/18/2025 in #help
Profiling Slow Roblox-TS Compilation
transformers play a big role too iirc
72 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
probably cause it was called in a promise that i didnt catch lol
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
so the lesson learned here was: be careful when using enum values as keys
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
sorry for the ping guys
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
i used
Partial<Record<DataType.u8, SerializedAbilitySet>>
and it worked18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
yep, sure enough
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
but in the data given to serialize() it's 1
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
in the default data table i have, the key AbilitySlot.One in SerializedAbilitySet is represented as 0
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
ok i think this is the issue
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
ok it is 100% the issue it indeed works without the
abilitySet
field18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
@Sasial @fireboltofdeath hoping maybe one of you have a solution, and sorry for ping 🙏 ❤️
18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
i will note that i checked if the data i was serializing passed a guard for
PlayerData
and it did not, however this could be because of the Packed<T>
type adding the _packed
field18 replies
Rroblox-ts
•Created by runic on 4/16/2025 in #help
Serializer<T>.serialize() yielding
and the
AbilitySlot
enum is just numbers starting @ 018 replies