mirror of
https://github.com/leozide/leocad
synced 2025-01-18 22:26:44 +01:00
Synthesize linear actuators with new IDs.
Technic Power Functions Linear Actuators were moved to a new ID in the 2017-01 LDraw library update and then renamed in the 2019-03 update.
This commit is contained in:
parent
d27a448550
commit
48d6f14532
1 changed files with 4 additions and 2 deletions
|
@ -323,8 +323,10 @@ void lcSynthInit()
|
|||
}
|
||||
Actuators[] =
|
||||
{
|
||||
{ "61927C01.dat", 270.00f }, // Technic Power Functions Linear Actuator (Extended)
|
||||
{ "61927.dat", 170.00f } // Technic Power Functions Linear Actuator (Contracted)
|
||||
{ "61927-F1.dat", 170.00f }, // Technic Linear Actuator 8 x 2 x 2 (Contracted)
|
||||
{ "61927-F2.dat", 270.00f }, // Technic Linear Actuator 8 x 2 x 2 (Extended)
|
||||
{ "61927C01.dat", 270.00f }, // Moved to 61927-f2 (was Technic Power Functions Linear Actuator (Extended))
|
||||
{ "61927.dat", 170.00f }, // Moved to 61927-f1 (was Technic Power Functions Linear Actuator (Contracted))
|
||||
};
|
||||
|
||||
for (const auto& ActuatorInfo: Actuators)
|
||||
|
|
Loading…
Reference in a new issue