Skip to content

Commit

Permalink
Update logic.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mclemente committed Apr 18, 2024
1 parent e45d10c commit 2d1d0e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/module/logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export class HealthEstimate {
return this.scaleToGridSize ? canvas.scene.dimensions.size / 100 : 1;
}

get provider() {
return this.estimationProvider;
}

get zoomLevel() {
return this.scaleToZoom ? Math.min(1, canvas.stage.scale.x) : 1;
}
Expand Down

0 comments on commit 2d1d0e8

Please sign in to comment.