mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 02:22:32 +02:00
add some comments about meanings of workload Regions
This commit is contained in:
parent
1bfd5386a9
commit
0f42dca40b
1 changed files with 6 additions and 6 deletions
|
@ -18,12 +18,12 @@ public:
|
|||
using Type = uint8_t;
|
||||
|
||||
enum Name : uint8_t {
|
||||
R1 = 0,
|
||||
R2,
|
||||
R3,
|
||||
R4,
|
||||
UNKNOWN,
|
||||
INVALID,
|
||||
R1 = 0, // R1 = in physics simulation and client will bid for simulation ownership
|
||||
R2, // R2 = in physics simulation but client prefers to NOT have simulation ownership
|
||||
R3, // R3 = are NOT in physics simulation but yes kinematically animated when velocities are non-zero
|
||||
R4, // R4 = known to workload but outside R3, not in physics, not animated if moving
|
||||
UNKNOWN, // UNKNOWN = known to workload but unsorted
|
||||
INVALID, // INVALID = not known to workload
|
||||
};
|
||||
|
||||
static const uint8_t NUM_CLASSIFICATIONS = 4;
|
||||
|
|
Loading…
Reference in a new issue