-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
It's a combination of multiple enum values (E.G. I'm still unsure on the actual enum values - their order in that list on the wiki is correct, but I don't know if they all correspond to incrementing indexes (0,1,2,3,4,etc) or if some have custom values, which is why I don't display them correctly in the UI yet. |
Beta Was this translation helpful? Give feedback.
-
I had a feeling the enum values were incremental like that. Figuring out the increment seems like it's going to be a headache. The only thing I've ever done with with numbers like that in programming was on a Commodore 64 and 8x8 sprite matrices in BASIC. |
Beta Was this translation helpful? Give feedback.
-
You've implemented this in the commands editor. So this is now moot |
Beta Was this translation helpful? Give feedback.
It's a combination of multiple enum values (E.G.
ALIENS
andANDROIDS
), so won't be a regular index. Check this page out to understand the technical details: https://www.alanzucconi.com/2015/07/26/enum-flags-and-bitwise-operators/I'm still unsure on the actual enum values - their order in that list on the wiki is correct, but I don't know if they all correspond to incrementing indexes (0,1,2,3,4,etc) or if some have custom values, which is why I don't display them correctly in the UI yet.