Don’t conflate the physical existence / orientation of the cards (eg, the GameObjects) with the logical cards that make up a player’s hand.
For instance, if you and I are playing “combat pairs” against each other and we each have one card hidden and are sharing a common card that is also considered the other half of our “pair,” then we have three cards in play:
- my card
- your card
- shared card
When you want to evaluate each of our hands, to evaluate mine you would consider;
- my card + shared card
To evaluate yours you would consider:
- your card + shared card
And from that you would get two results, which can then be compared.
Otherwise, not sure what your question is exactly…
How to report your problem productively in the Unity3D forums:
This is the bare minimum of information to report:
- what you want
- what you tried
- what you expected to happen
- what actually happened, log output, variable values, and especially any errors you see
- links to documentation you used to cross-check your work (CRITICAL!!!)
The purpose of YOU providing links is to make our job easier, while simultaneously showing us that you actually put effort into the process. If you haven’t put effort into finding the documentation, why should we bother putting effort into replying?
If you post a code snippet, ALWAYS USE CODE TAGS:
How to use code tags: Using code tags properly
- Do not TALK about code without posting it.
- Do NOT post unformatted code.
- Do NOT retype code. Use copy/paste properly using code tags.
- Do NOT post screenshots of code.
- Do NOT post photographs of code.
- ONLY post the relevant code, and then refer to it in your discussion.