mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-23 22:30:09 +00:00
Update camera view logic
This commit is contained in:
parent
f7c82df494
commit
5983ff749d
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
## Version 4.0.2
|
||||
* Added new logic to detect when flight session is ready to initiate pop out process. Ready to Fly delay setting is no longer needed. Please install updated "ready-to-fly-button-skipper" community plugin to your community folder if you would like to shorten the time when pop out process starts from 2 seconds + ready to fly button dely to 0 seconds.
|
||||
* Added new logic to detect when flight session is ready to initiate pop out process for auto pop out panel. Ready to Fly button delay setting is no longer needed.
|
||||
|
||||
* Updated logic to load custom camera view when performing pop out. The new logic is more reliable but unfornately will be a little slower because MSFS AAU2 may have introduced issue in loading and saving camera view. Pop out progress messages will show steps being taken when adjusting camera view.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<hr/>
|
||||
|
||||
## Version 4.0.2
|
||||
* Added new logic to detect when flight session is ready to initiate pop out process. Ready to Fly delay setting is no longer needed. Please install updated "ready-to-fly-button-skipper" community plugin to your community folder if you would like to shorten the time when pop out process starts from 2 seconds + ready to fly button dely to 0 seconds.
|
||||
* Added new logic to detect when flight session is ready to initiate pop out process for auto pop out panel. Ready to Fly button delay setting is no longer needed.
|
||||
|
||||
* Updated logic to load custom camera view when performing pop out. The new logic is more reliable but unfornately will be a little slower because MSFS AAU2 may have introduced issue in loading and saving camera view. Pop out progress messages will show steps being taken when adjusting camera view.
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
<script>
|
||||
// Define ready to fly button skip delay in seconds
|
||||
const READY_TO_FLY_BUTTON_SKIP_DELAY = 0;
|
||||
const READY_TO_FLY_BUTTON_SKIP_DELAY = 2;
|
||||
|
||||
// Click ready to fly button
|
||||
Coherent.on("MissionStartup_Step", (step) => {
|
||||
|
|
Loading…
Reference in a new issue