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 just makes things more difficult for everyone to use. PkR was trying to use the '|=' operator on the LastRenderFlags variable, but if you try that, the compiler tells you "this operation on an enumerated type requires an applicable user-defined operator function". Changing the variable to int allows it to work.
The LoadObject function is also a pain to use if you want no flags or multiple flags, you have to cast the value to the LoadObj type for it to work.
The text was updated successfully, but these errors were encountered:
It just makes things more difficult for everyone to use. PkR was trying to use the '|=' operator on the LastRenderFlags variable, but if you try that, the compiler tells you "this operation on an enumerated type requires an applicable user-defined operator function". Changing the variable to int allows it to work.
The LoadObject function is also a pain to use if you want no flags or multiple flags, you have to cast the value to the LoadObj type for it to work.
The text was updated successfully, but these errors were encountered: