Skip to content

Commit

Permalink
Clearly identify snug steps
Browse files Browse the repository at this point in the history
  • Loading branch information
acidbubbles committed Mar 2, 2021
1 parent b30f263 commit d038016
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Wizard/Steps/MeasureAnchorDepthAndOffsetStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public bool Apply()

_anchor.Update();

context.diagnostics.TakeSnapshot($"{nameof(MeasureAnchorDepthAndOffsetStep)}.{nameof(Apply)}");
context.diagnostics.TakeSnapshot($"{nameof(MeasureAnchorDepthAndOffsetStep)}[{_anchor.id}].{nameof(Apply)}");

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Wizard/Steps/MeasureAnchorWidthStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public bool Apply()
_anchor.realLifeSize = _anchor.inGameSize / _anchor.inGameSize.x * (realLifeWidth * _widthMultiplier);
_anchor.realLifeSize = new Vector3(_anchor.realLifeSize.x, 1f, _anchor.realLifeSize.z);

context.diagnostics.TakeSnapshot($"{nameof(MeasureAnchorWidthStep)}.{nameof(Apply)}");
context.diagnostics.TakeSnapshot($"{nameof(MeasureAnchorWidthStep)}[{_anchor.id}].{nameof(Apply)}");

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Wizard/Steps/MeasureArmsAtRestStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public bool Apply()
var difference = realY - inGameY;
_anchor.realLifeOffset = new Vector3(0f, difference, 0f);

context.diagnostics.TakeSnapshot($"{nameof(MeasureArmsAtRestStep)}.{nameof(Apply)}");
context.diagnostics.TakeSnapshot($"{nameof(MeasureArmsAtRestStep)}[{_anchor.id}].{nameof(Apply)}");

return true;
}
Expand Down

0 comments on commit d038016

Please sign in to comment.