-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs #480
Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs #480
Conversation
…-in-3dcabs , Alignment of digitals in 3D cabs
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs
This bug report will also be resolved by this change: |
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #482 at 878a89e: Fix Toggle Player Engine command and refactor - Pull request #483 at 73e97b7: Update templates and French locales
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #482 at 878a89e: Fix Toggle Player Engine command and refactor - Pull request #483 at 73e97b7: Update templates and French locales - Pull request #484 at 5b4ced7: fix: Do not act recursively on documentation or things go wrong - Pull request #485 at 61ece3f: Fix pantograph 1 raise confirmation message
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #482 at 878a89e: Fix Toggle Player Engine command and refactor - Pull request #483 at 73e97b7: Update templates and French locales - Pull request #484 at 5b4ced7: fix: Do not act recursively on documentation or things go wrong - Pull request #485 at 61ece3f: Fix pantograph 1 raise confirmation message - Pull request #486 at 5ad960a: Bug fix for https://bugs.launchpad.net/or/+bug/1943837 3D cabs: digitals aren't clamped against Max and MinValue
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #483 at 73e97b7: Update templates and French locales - Pull request #484 at 5b4ced7: fix: Do not act recursively on documentation or things go wrong - Pull request #485 at 61ece3f: Fix pantograph 1 raise confirmation message - Pull request #486 at 5ad960a: Bug fix for https://bugs.launchpad.net/or/+bug/1943837 3D cabs: digitals aren't clamped against Max and MinValue
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested this PR. It works properly.
But I think the new getter method is superfluous.
Source/RunActivity/Viewer3D/RollingStock/MSTSLocomotiveViewer.cs
Outdated
Show resolved
Hide resolved
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #489 at 67d0eaa: Manual Software Platform
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #491 at 4293405: Announce train driving window
Also, these new values for the Justification parameter can be documented in the manual, I think. |
Yes, that's correct. I'll do that once the blueprint gets approved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The feature request itself – alignment of digital displays in 3D cabs – is good
@@ -115,6 +115,9 @@ public enum LabelAlignment | |||
Left, | |||
Center, | |||
Right, | |||
Cab3DLeft, | |||
Cab3DCenter, | |||
Cab3DRight, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is not okay; this enum
is for the popup windows and adding values that are not used by the popup windows is confusing and wrong – CabViewDigitalRenderer
should be using its own enum
if you want additional/different enum
values
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will put in a comment the explanation that I have written here http://www.elvastower.com/forums/index.php?/topic/35498-justification-alignment-for-digitals-in-3dcabs/page__view__findpost__p__275959 : as of now existing 3D cabs have left-aligned digitals independently from the value of Justification. If I now respect the value of Justification,, existing 3D cabs will change the alignment of their digitals, which is not desirable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This response does not match the issue here. You cannot add these three values to this particular enum
. It is completely and utterly the wrong thing to do here.
If you absolutely must keep track of 6 different alignment values, please create a new enum
in the cab view code.
@@ -2454,7 +2454,8 @@ public CabViewDigitalRenderer(Viewer viewer, MSTSLocomotive car, CVCDigital digi | |||
if (Control.ControlType == CABViewControlTypes.CLOCK) | |||
Alignment = LabelAlignment.Center; | |||
Alignment = digital.Justification == 1 ? LabelAlignment.Center : digital.Justification == 2 ? LabelAlignment.Left : digital.Justification == 3 ? LabelAlignment.Right : Alignment; | |||
|
|||
// Used for 3D cabs | |||
Alignment = digital.Justification == 4 ? LabelAlignment.Cab3DCenter : digital.Justification == 5 ? LabelAlignment.Cab3DLeft : digital.Justification == 6 ? LabelAlignment.Cab3DRight : Alignment; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sure you have a reason for using 4, 5, 6 here instead of 1, 2, 3 so please can you put that reason into a comment here (I would rather use 1, 2, 3)
But, whatever that reason, I definitely do not see why you need those three additional values for Alignment
. Why not read 4, 5, 6 and store as LabelAlignment.Center
, LabelAlignment.Left
, LabelAlignment.Right
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can put in a comment the explanation that I have written here http://www.elvastower.com/forums/index.php?/topic/35498-justification-alignment-for-digitals-in-3dcabs/page__view__findpost__p__275959 : as of now existing 3D cabs have left-aligned digitals independently from the value of Justification. If I now respect the value of Justification,, existing 3D cabs will change the alignment of their digitals, which is not desirable.
Your proposal does not solve the above problem. If you prefer, I can use a new field in the .cvf control, e.g. ORTS3DAlignment, which can have values 1, 2 or 3, and check that one in the 3D cab code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there many 3D cabs that will seriously break if you used the same 1, 2, 3 values?
We are adding a lot of confusion complexity with 4, 5, 6 here so we need to justify that it is absolutely necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
James, I see that especially commercial content developers are offering 3D cabs. I suppose they aren't happy if we break compatibility.
As written in my alternate proposal at the end of my message above yours, inserting ORTS3DAligment in the .cvf file there is no more need for values 4, 5 and 6. ORTS3DAlignment would have values 1, 2 and 3, and within the code it would be used to assign a LabelAlignment to a new variable Alignment3D, which would be the one checked in the 3D cab code.
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #493 at bae037f: adds Folders Used By OR to manual appendix - Pull request #494 at bae037f: adds Folders Used By OR to manual appendix
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #493 at bae037f: adds Folders Used By OR to manual appendix - Pull request #494 at bae037f: adds Folders Used By OR to manual appendix - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #494 at bae037f: adds Folders Used By OR to manual appendix - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines - Pull request #497 at d6a3bf6: Bug fix for https://bugs.launchpad.net/or/+bug/1944725 Switching 3D cab the camera position is incorrect
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #494 at b043382: adds Folders Used By OR to manual appendix - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines - Pull request #497 at d6a3bf6: Bug fix for https://bugs.launchpad.net/or/+bug/1944725 Switching 3D cab the camera position is incorrect
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #494 at b043382: adds Folders Used By OR to manual appendix - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines - Pull request #497 at d6a3bf6: Bug fix for https://bugs.launchpad.net/or/+bug/1944725 Switching 3D cab the camera position is incorrect - Pull request #498 at 6a2ee5c: Fixed wrong integer values for cabview controls related to power supplies
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines - Pull request #497 at d6a3bf6: Bug fix for https://bugs.launchpad.net/or/+bug/1944725 Switching 3D cab the camera position is incorrect - Pull request #498 at 6a2ee5c: Fixed wrong integer values for cabview controls related to power supplies
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #488 at dd82524: Correct error introduced that stopped some brake tokens from operating - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines - Pull request #497 at d6a3bf6: Bug fix for https://bugs.launchpad.net/or/+bug/1944725 Switching 3D cab the camera position is incorrect - Pull request #498 at 6a2ee5c: Fixed wrong integer values for cabview controls related to power supplies
- Pull request #473 at d08e0b9: Further enhancements to Control Car - Pull request #480 at 6bc94a9: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #495 at e2a986e: Fixed a mistake in SignalEventToHelperEngines - Pull request #497 at d6a3bf6: Bug fix for https://bugs.launchpad.net/or/+bug/1944725 Switching 3D cab the camera position is incorrect - Pull request #498 at 6a2ee5c: Fixed wrong integer values for cabview controls related to power supplies
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at d4d3256: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #520 at 82fdd3f: Add checks for AirBrakeMaxMainResPipePressure. - Pull request #522 at 78c046c: Correct issue with tender water mass
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at d4d3256: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #520 at 82fdd3f: Add checks for AirBrakeMaxMainResPipePressure. - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always return true for SPEED signals
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at d4d3256: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #520 at d6e23e1: Add checks for AirBrakeMaxMainResPipePressure. - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always returning true for SPEED signals
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 781b35d: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #520 at d6e23e1: Add checks for AirBrakeMaxMainResPipePressure. - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always returning true for SPEED signals
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 88621d6: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always returning true for SPEED signals
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 88621d6: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always returning true for SPEED signals - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 88621d6: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always returning true for SPEED signals - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 88621d6: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #523 at 236aebf: Fix sig_feature function always returning true for SPEED signals - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 88621d6: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 1ac4334: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at f25fe0c: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 906f067: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 906f067: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site - Pull request #529 at 7848297: Replace manual cover image
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 7901f4d: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 78c046c: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site - Pull request #529 at 7848297: Replace manual cover image
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 804e9e6: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #519 at 94c4637: Website changes for Release v1.4 - Pull request #522 at 46b388f: Correct issue with tender water mass - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #528 at 212eba1: Updated link to Siskiyou Route site - Pull request #529 at 7848297: Replace manual cover image
@twpol Can you check if the changes are OK for you? |
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 48f140f: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 39e2370: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at eb9bcb7: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at eb9bcb7: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at 71aa390: Steam adhesion not applied to all locomotives in the player train.
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at e2a54b3: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at 71aa390: Steam adhesion not applied to all locomotives in the player train.
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 35b7c89: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at 71aa390: Steam adhesion not applied to all locomotives in the player train.
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 35b7c89: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at 71aa390: Steam adhesion not applied to all locomotives in the player train. - Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 9e21c68: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at 71aa390: Steam adhesion not applied to all locomotives in the player train. - Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 9e21c68: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at ea547da: Steam adhesion not applied to all locomotives in the player train. - Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
The changes look much better now, thanks all |
- Pull request #480 at 7815b89: Blueprint https://blueprints.launchpad.net/or/+spec/digital-alignment-in-3dcabs - Pull request #510 at 2e03d42: Add performance monitoring for diesel mechanic locomotives and new parameters - Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures - Pull request #526 at 2bfe684: Bug fix for https://bugs.launchpad.net/or/+bug/1949292 AI train disappears after coupling and reversing - Pull request #527 at c786144: Brake cuts power refactor and new parameters - Pull request #530 at ea547da: Steam adhesion not applied to all locomotives in the player train. - Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
Nice that we arrived at a shared conclusion. Thanks. |
Alignment of digitals in 3D cabs.
See also http://www.elvastower.com/forums/index.php?/topic/35498-justification-alignment-for-digitals-in-3dcabs/#entry275959