From 0d5b0b823ee34e673e5274dce06335820b1df204 Mon Sep 17 00:00:00 2001 From: TheSaminator Date: Mon, 4 Jul 2022 11:48:16 -0400 Subject: [PATCH] Change radii --- src/jsMain/kotlin/net/starshipfights/campaign/space_render.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() }) -- 2.25.1