View Single Post
Posts: 21 | Thanked: 28 times | Joined on Apr 2010 @ Sweden
#102
Originally Posted by DaSilva View Post
Code:
[launcher_out_back]
duration=200
deceleration_rate=0.99
The cause is found. deceleration_rate MUST be in the "launcher" section. A section begins with [section-name] and ends with another section start (or end-of-file).

To fix:

1. remove deceleration_rate=0.99 from your file
2. Append (to the very end of the file):
Code:
[launcher]
deceleration_rate = 0.99
#strong_deceleration_rate = 0.7
When adding a new section, like "launcher", make sure not to break an existing one. This is why appending is safe. Insertion right before some other section start is ok as well (like at the start of file).

/T
 

The Following User Says Thank You to tomast For This Useful Post: