| 422 | } |
| 423 | |
| 424 | s32 joint_common_write(FileBuffer &fb, JointDesc &jd) |
| 425 | { |
| 426 | BinaryWriter bw(fb); |
| 427 | bw.write(jd.type_and_flags); |
| 428 | bw.write(jd.other_actor_unit_index); |
| 429 | bw.write(jd.pose); |
| 430 | bw.write(jd.other_pose); |
| 431 | bw.write(jd.break_force); |
| 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | s32 compile_fixed_joint(Buffer &output, UnitCompiler &compiler, FlatJsonObject &obj, CompileOptions &opts) |
| 436 | { |
no test coverage detected