diff options
| author | Valentin Popov <valentin@popov.link> | 2026-07-18 19:15:26 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-07-18 19:15:26 +0300 |
| commit | d7150a58d53786580fed00a3d4a0e9d2406fe9bb (patch) | |
| tree | 5a3b52e69be0a550dc768da57e22686a188deab0 /apps | |
| parent | b7a102caa7aab396469d69878a05e0b6c089c810 (diff) | |
| download | fparkan-d7150a58d53786580fed00a3d4a0e9d2406fe9bb.tar.xz fparkan-d7150a58d53786580fed00a3d4a0e9d2406fe9bb.zip | |
feat(prototype): retain unit component provenance
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/fparkan-game/src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/fparkan-game/src/main.rs b/apps/fparkan-game/src/main.rs index 90effa7..7f059af 100644 --- a/apps/fparkan-game/src/main.rs +++ b/apps/fparkan-game/src/main.rs @@ -1810,6 +1810,7 @@ mod tests { scale: [2.0, 3.0, 4.0], visual_ids: Vec::new(), properties: Vec::new(), + unit_components: Vec::new(), }; assert_eq!( mission_position_scale_transform(&draft), @@ -1850,6 +1851,7 @@ mod tests { scale: [1.0; 3], visual_ids: Vec::new(), properties: Vec::new(), + unit_components: Vec::new(), }]; let commands = render_snapshot_commands_with_assets(&snapshot, None, Some(&drafts))?; @@ -1887,6 +1889,7 @@ mod tests { scale: [1.0; 3], visual_ids: Vec::new(), properties: Vec::new(), + unit_components: Vec::new(), }]; let commands = render_snapshot_commands_with_assets(&snapshot, None, Some(&drafts))?; |
