You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's often very convenient to store some info about certain game objects. It's also good, if you can get that info in amortized O(1). As a workaround, it's possible to use StringMap with GetRawFormIDString refVar as keys. However, that would also require to update all such arrays on game load, as the keys may become invalid if load order changes (the FormID of references will change). That's why it would be very useful to have a Map with keys of Ref type.
The text was updated successfully, but these errors were encountered:
It's often very convenient to store some info about certain game objects. It's also good, if you can get that info in amortized O(1). As a workaround, it's possible to use StringMap with
GetRawFormIDString refVar
as keys. However, that would also require to update all such arrays on game load, as the keys may become invalid if load order changes (the FormID of references will change). That's why it would be very useful to have a Map with keys of Ref type.The text was updated successfully, but these errors were encountered: