Skip to content

Commit

Permalink
[#72] Improve arm
Browse files Browse the repository at this point in the history
  • Loading branch information
Orchaldir committed Sep 17, 2023
1 parent ee6a7c1 commit b1cc42d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpg_tools_rendering/src/rendering/body/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fn get_left_arm(config: &RenderConfig, aabb: &AABB, body: &Body) -> Polygon2d {
let mut builder = Polygon2dBuilder::new();
let width = config.body.get_arm_width(body);
let height = config.body.height_arm;
let top_x = get_end_x(config.body.get_shoulder_width(body));
let top_x = get_end_x(config.body.get_shoulder_width(body) * 0.94);
let bottom_x = get_end_x(config.body.get_torso_width(body));
let y = config.body.get_arm_y();

Expand Down

0 comments on commit b1cc42d

Please sign in to comment.