Compare commits

...

15 Commits

Author SHA1 Message Date
57009f793c void 2024-12-04 14:32:57 -06:00
c02ae74ab4 void 2024-12-04 14:29:33 -06:00
84f286dd70 A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) 2024-12-04 20:20:48 +00:00
ae2b7cd2b8 A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) 2024-12-04 20:19:45 +00:00
1e868ae151 A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) 2024-12-04 20:15:14 +00:00
ef1f5c154d A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) 2024-12-04 20:13:50 +00:00
09fd361d2b void 2024-12-04 14:06:31 -06:00
a0640a2408 A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) 2024-12-04 19:20:05 +00:00
dce3a184f8 A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) 2024-12-04 19:17:34 +00:00
9a6c5ba5a3 A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) 2024-12-04 19:10:15 +00:00
352eee810e void 2024-12-04 12:58:34 -06:00
ae542c3dd7 A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) 2024-12-04 18:50:28 +00:00
fc4ecf1d45 A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) 2024-12-04 18:49:07 +00:00
5823fc6807 A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) 2024-12-04 18:48:23 +00:00
1adc996c52 KCL: Look straight ahead on startup
The engine used to look straight ahead when it started. Recently it
changed to an isometric viewpoint. While this looks nice, the frontend
team needs time to adjust tests which assumed the old viewpoint.

So, temporarily ensure the old view is set at the start.
2024-12-04 12:38:50 -06:00
17 changed files with 17 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1831,6 +1831,23 @@ impl ExecutorContext {
}),
)
.await?;
// Engine starts default to isometric view -- change to a straight-on view for now.
self.engine
.batch_modeling_cmd(
exec_state.id_generator.next_uuid(),
SourceRange::default(),
&ModelingCmd::from(mcmd::DefaultCameraLookAt {
vantage: kcmc::shared::Point3d {
x: 0.0,
y: -1250.0,
z: 580.0,
},
center: kcmc::shared::Point3d::default(),
up: kcmc::shared::Point3d { x: 0.0, y: 0.0, z: 1.0 },
sequence: None,
}),
)
.await?;
self.inner_execute(&program.ast, exec_state, crate::executor::BodyType::Root)
.await?;