We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f99262 commit 5835f46Copy full SHA for 5835f46
engine/modules/entities/src/main/resources/view/entity-module/Circle.js
@@ -33,7 +33,7 @@ export class Circle extends Shape {
33
this.graphics.beginFill(state.fillColor, state.fillAlpha)
34
}
35
this.graphics.lineStyle(globalData.atLeastOnePixel(state.lineWidth), state.lineColor)
36
- this.graphics.drawCircle(0, 0, state.radius * globalData.coeff)
+ this.graphics.drawCircle(0, 0, state.radius * globalData.toWorldUnits)
37
if (state.fillColor !== null) {
38
this.graphics.endFill()
39
0 commit comments