So I thought I had this conquered, but it seems I dont. I am trying to create a double piece of track with a central radius of 150m at 5 degrees.
I created two track sections and a track Shape:-
Code:
TrackSection ( 1010
SectionSize ( 1.5 0 )
SectionCurve ( 147.5075 -5 )
)
TrackSection ( 1011
SectionSize ( 1.5 0 )
SectionCurve ( 152.4925 -5 )
)
And a track shape :-
Code:
TrackShape (1166
FileName (t2c150r5d.s)
Numpaths (2)
SectionIdx ( 1 -2.4925 0 0 0 1010 )
SectionIdx ( 1 2.4925 0 0 0 1011 )
)
when laid in TSRE5, it is OK providing I dont swap the direction, so on my test environment :-
(1st Part : OK)
1st Track Piece.jpg
(2nd Part: OK)
2nd Track Piece.jpg
(3rd Part: After pressing 'X' to get it the in the right orientation)
3rd Track Piece.jpg
It alters the orientation of the first two parts, this is also reflected in OR if I run it.
I did some experiments with my 250m 5d section which uses the existing track sections (194 and 196) and amending my two track sections 1010 and 1011 to be identical, I got the same 'jumping result' as with the 150m track shapes.
Before, which works perfectly:
Code:
TrackShape ( 1156
FileName ( t2c250r5d.s )
NumPaths ( 2 )
SectionIdx ( 1 -2.4925 0 0 0 194 )
SectionIdx ( 1 2.4925 0 0 0 196 )
)
After (Which Jumps)
Code:
TrackSection ( 1010
SectionSize ( 1.5 0 )
SectionCurve ( 247.5075 -5 )
)
TrackSection ( 1011
SectionSize ( 1.5 0 )
SectionCurve ( 252.4925 -5 )
)
TrackShape ( 1156
FileName ( t2c250r5d.s )
NumPaths ( 2 )
SectionIdx ( 1 -2.4925 0 0 0 1010)
SectionIdx ( 1 2.4925 0 0 0 1011)
)
Can anyone see where I am going wrong?