From: TheSaminator Date: Mon, 4 Jul 2022 15:48:16 +0000 (-0400) Subject: Change radii X-Git-Url: https://gitweb.starshipfights.net/?a=commitdiff_plain;h=0d5b0b823ee34e673e5274dce06335820b1df204;p=starship-fights Change radii --- diff --git a/src/jsMain/kotlin/net/starshipfights/campaign/space_render.kt b/src/jsMain/kotlin/net/starshipfights/campaign/space_render.kt index e8b74b6..15f149f 100644 --- a/src/jsMain/kotlin/net/starshipfights/campaign/space_render.kt +++ b/src/jsMain/kotlin/net/starshipfights/campaign/space_render.kt @@ -53,7 +53,7 @@ object CampaignResources { CampaignScaling.toWorldPosition(bEdge), ), 1, - 0.24, + 0.25, 4, false ) @@ -343,7 +343,7 @@ object CampaignResources { } starSystem = CustomRenderFactory { (ssId, starSystem) -> - val torusGeom = TorusGeometry(CampaignScaling.toWorldLength(starSystem.radius), 0.25, 4, 64) + val torusGeom = TorusGeometry(CampaignScaling.toWorldLength(starSystem.radius), 0.4, 4, 64) val torusMat = MeshBasicMaterial(configure { color = (starSystem.holder?.mapColor ?: IntColor(255, 255, 255)).to3JS() })