Skip to content

Commit

Permalink
Fix incorrect Marker translate Y attribute.
Browse files Browse the repository at this point in the history
Issue #114.
  • Loading branch information
david-cattermole committed Jan 1, 2022
1 parent e73fe55 commit 1d8b93e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmscenegraph/rust/src/scene/bake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ pub fn bake_scene_graph(
mkr_attr_list.reserve(mkr_nodes.len());
for mkr_node in mkr_nodes.iter() {
let attr_tx = mkr_node.get_attr_tx();
let attr_ty = mkr_node.get_attr_tx();
let attr_ty = mkr_node.get_attr_ty();
let attr_weight = mkr_node.get_attr_weight();

let mkr_attrs = AttrMarkerIds {
Expand Down

0 comments on commit 1d8b93e

Please sign in to comment.