Space Engineers

Space Engineers

MArmOS (Mechanical Arm Operating System) v3.1
MrFox 2023 年 4 月 26 日 下午 4:51
Arm I did try...
Ok In a straight ling i have this...
Advanced rotor > COnvayor > Hinge >Convator> Piston>Piston>Piston>Rotor>Convayor>Hinge>Drill>Remote+Cam on the drill
This code is what i thought was right... nothing happens =(
Please help...


void MArmOS_Configuration(){
new Rotor( Name: "ARotor01", Axis: "Z", OriMode: 0 );
new SolidLG( 1, 0, 0 );
new Rotor( Name: "AHinge02", Axis: "Y", OriMode: 0 );
new SolidLG( 1, 0, 0 );
new Piston( Name: "APiston03", Axis: "X" );
new Piston( Name: "APiston04", Axis: "X" );
new Piston( Name: "APiston05", Axis: "X" );
new SolidLG( 9, 0, 0 );
new Rotor( Name: "ARotor06", Axis: "Z", OriMode: 0 );
new SolidLG( 1, 0, 0 );
new Rotor( Name: "AHinge07", Axis: "Z", OriMode: 0 );
new UserControl( Arm: DefaultArm );
}
< >
正在显示第 1 - 2 条,共 2 条留言
Fredrik Metcalf 2023 年 10 月 18 日 上午 10:05 
Try to no have the solids before and after piston, just merge them to a single SoligLG(10,0,0). Before or after does not matter.
MrFox 2023 年 11 月 1 日 下午 9:29 
引用自 Fredrik Metcalf
Try to no have the solids before and after piston, just merge them to a single SoligLG(10,0,0). Before or after does not matter.
Like this?

void MArmOS_Configuration(){
new Rotor( Name: "ARotor01", Axis: "Z", OriMode: 0 );
new Rotor( Name: "AHinge02", Axis: "Y", OriMode: 0 );
new Piston( Name: "APiston03", Axis: "X" );
new Piston( Name: "APiston04", Axis: "X" );
new Piston( Name: "APiston05", Axis: "X" );
new Rotor( Name: "ARotor06", Axis: "Z", OriMode: 0 );
new SolidLG( 10, 0, 0 );
new Rotor( Name: "AHinge07", Axis: "Z", OriMode: 0 );
new UserControl( Arm: DefaultArm );
}
< >
正在显示第 1 - 2 条,共 2 条留言
每页显示数: 1530 50