B1TeamProjectState
- Runtime state of an active team project, tracking points, timeline, and per-member contributions.
| Property | Type | Description | Metadata |
|---|---|---|---|
| ProjectId | FName | Foreign key referencing the project definition in the data table. | |
| CurrentPoint | int32 | Current accumulated contribution points for this project. | |
| TotalPoint | int32 | Total points required for the Excellent grade, copied from the data table at project start. | |
| StartTicks | int64 | Project start time in game ticks. | |
| DeadlineTicks | int64 | Project deadline time in game ticks. | |
| MemberContributions | TMap | Map of entity IDs to their individual contribution point totals. | |
| WorkedMemberIds | TArray | Members who attended at least one day during the team project period. * Members not in this list are excluded from evaluation (no rewards, no penalties). | |
| bIsActive | bool | Whether the project is currently active and accepting contributions. |