static public void Make(GameObject body, float size) { GameObject cloak = GameObject.CreatePrimitive(PrimitiveType.Sphere); cloak.transform.parent = body.transform; cloak.transform.localScale = new Vector3(size, size, size); cloak.GetComponent <SphereCollider>().enabled = false; cloak.GetComponent <MeshRenderer>().material = new Material(Shader.Find("Sprites/Default")); cloak.GetComponent <MeshRenderer>().material.color = new Color32(0, 0, 0, 255); cloak.AddComponent <MysteryPlanetCloakSphere>(); GameObject cloudsTop = new GameObject(); cloudsTop.SetActive(false); cloudsTop.layer = 28; cloudsTop.transform.parent = body.transform; cloudsTop.transform.localScale = new Vector3((size + 5) / 2, (size + 5) / 2, (size + 5) / 2); MeshFilter MF = cloudsTop.AddComponent <MeshFilter>(); MF.mesh = GameObject.Find("CloudsTopLayer_GD").GetComponent <MeshFilter>().mesh; MeshRenderer MR = cloudsTop.AddComponent <MeshRenderer>(); MR.materials = GameObject.Find("CloudsTopLayer_GD").GetComponent <MeshRenderer>().materials; RotateTransform RT = cloudsTop.AddComponent <RotateTransform>(); RT.SetValue("_localAxis", Vector3.up); RT.SetValue("degreesPerSecond", 10); RT.SetValue("randomizeRotationRate", false); cloudsTop.SetActive(true); }
public static void Make(GameObject body, Sector sector, IPlanetConfig config) { GameObject cloudsMainGO = new GameObject(); cloudsMainGO.SetActive(false); cloudsMainGO.transform.parent = body.transform; GameObject cloudsTopGO = new GameObject(); cloudsTopGO.SetActive(false); cloudsTopGO.transform.parent = cloudsMainGO.transform; cloudsTopGO.transform.localScale = new Vector3(config.TopCloudSize / 2, config.TopCloudSize / 2, config.TopCloudSize / 2); //AddDebugShape.AddSphere(cloudsTopGO, config.TopCloudSize/2, new Color32(255, 0, 255, 128)); MeshFilter topMF = cloudsTopGO.AddComponent <MeshFilter>(); topMF.mesh = GameObject.Find("CloudsTopLayer_GD").GetComponent <MeshFilter>().mesh; var tempArray = new Material[2]; MeshRenderer topMR = cloudsTopGO.AddComponent <MeshRenderer>(); for (int i = 0; i < 2; i++) { tempArray[i] = GameObject.Instantiate(GameObject.Find("CloudsTopLayer_GD").GetComponent <MeshRenderer>().sharedMaterials[i]); } topMR.sharedMaterials = tempArray; foreach (var material in topMR.sharedMaterials) { material.SetColor("_Color", config.TopCloudTint.ToColor32()); var image = ImageUtilities.LoadImage(Main.helper.Manifest.ModFolderPath + "clouds_top.png"); image = ImageUtilities.TintImage(image, config.TopCloudTint.ToColor32()); material.SetTexture("_MainTex", image); image = ImageUtilities.LoadImage(Main.helper.Manifest.ModFolderPath + "clouds_top_ramp.png"); image = ImageUtilities.TintImage(image, config.TopCloudTint.ToColor32()); material.SetTexture("_RampTex", image); image = ImageUtilities.LoadImage(Main.helper.Manifest.ModFolderPath + "clouds_cap.png"); image = ImageUtilities.TintImage(image, config.TopCloudTint.ToColor32()); material.SetTexture("_CapTex", image); } RotateTransform topRT = cloudsTopGO.AddComponent <RotateTransform>(); topRT.SetValue("_localAxis", Vector3.up); topRT.SetValue("degreesPerSecond", 10); topRT.SetValue("randomizeRotationRate", false); /* * SectorCullGroup scg = cloudsTop.AddComponent<SectorCullGroup>(); * scg.SetValue("_sector", MainClass.SECTOR); * scg.SetValue("_occlusionCulling", true); * scg.SetValue("_dynamicCullingBounds", false); * scg.SetValue("_particleSystemSuspendMode", CullGroup.ParticleSystemSuspendMode.Pause); * scg.SetValue("_waitForStreaming", false); */ GameObject cloudsBottomGO = new GameObject(); cloudsBottomGO.SetActive(false); cloudsBottomGO.transform.parent = cloudsMainGO.transform; cloudsBottomGO.transform.localScale = new Vector3(config.BottomCloudSize / 2, config.BottomCloudSize / 2, config.BottomCloudSize / 2); TessellatedSphereRenderer bottomTSR = cloudsBottomGO.AddComponent <TessellatedSphereRenderer>(); bottomTSR.tessellationMeshGroup = GameObject.Find("CloudsBottomLayer_GD").GetComponent <TessellatedSphereRenderer>().tessellationMeshGroup; bottomTSR.sharedMaterials = GameObject.Find("CloudsBottomLayer_GD").GetComponent <TessellatedSphereRenderer>().sharedMaterials; bottomTSR.maxLOD = 6; bottomTSR.LODBias = 0; bottomTSR.LODRadius = 1f; foreach (Material material in bottomTSR.sharedMaterials) { material.SetColor("_Color", config.BottomCloudTint.ToColor32()); } TessSphereSectorToggle bottomTSST = cloudsBottomGO.AddComponent <TessSphereSectorToggle>(); bottomTSST.SetValue("_sector", sector); GameObject cloudsFluidGO = new GameObject(); cloudsFluidGO.SetActive(false); cloudsFluidGO.layer = 17; cloudsFluidGO.transform.parent = cloudsMainGO.transform; SphereCollider fluidSC = cloudsFluidGO.AddComponent <SphereCollider>(); fluidSC.isTrigger = true; fluidSC.radius = config.TopCloudSize / 2; OWShellCollider fluidOWSC = cloudsFluidGO.AddComponent <OWShellCollider>(); fluidOWSC.SetValue("_innerRadius", config.BottomCloudSize); CloudLayerFluidVolume fluidCLFV = cloudsFluidGO.AddComponent <CloudLayerFluidVolume>(); fluidCLFV.SetValue("_layer", 5); fluidCLFV.SetValue("_priority", 1); fluidCLFV.SetValue("_density", 1.2f); fluidCLFV.SetValue("_fluidType", FluidVolume.Type.CLOUD); fluidCLFV.SetValue("_allowShipAutoroll", true); fluidCLFV.SetValue("_disableOnStart", false); cloudsTopGO.SetActive(true); cloudsBottomGO.SetActive(true); cloudsFluidGO.SetActive(true); cloudsMainGO.SetActive(true); Logger.Log("Finished building clouds.", Logger.LogType.Log); }
public static void Make(GameObject body, float topCloudScale, float bottomCloudScale, Color?cloudTint = null) { GameObject cloudsMain = new GameObject(); cloudsMain.SetActive(false); cloudsMain.transform.parent = body.transform; GameObject cloudsTop = new GameObject(); cloudsTop.SetActive(false); cloudsTop.transform.parent = cloudsMain.transform; cloudsTop.transform.localScale = new Vector3(topCloudScale / 2, topCloudScale / 2, topCloudScale / 2); MeshFilter MF = cloudsTop.AddComponent <MeshFilter>(); MF.mesh = GameObject.Find("CloudsTopLayer_GD").GetComponent <MeshFilter>().mesh; MeshRenderer MR = cloudsTop.AddComponent <MeshRenderer>(); MR.materials = GameObject.Find("CloudsTopLayer_GD").GetComponent <MeshRenderer>().materials; RotateTransform RT = cloudsTop.AddComponent <RotateTransform>(); RT.SetValue("_localAxis", Vector3.up); RT.SetValue("degreesPerSecond", 10); RT.SetValue("randomizeRotationRate", false); /* * SectorCullGroup scg = cloudsTop.AddComponent<SectorCullGroup>(); * scg.SetValue("_sector", MainClass.SECTOR); * scg.SetValue("_occlusionCulling", true); * scg.SetValue("_dynamicCullingBounds", false); * scg.SetValue("_particleSystemSuspendMode", CullGroup.ParticleSystemSuspendMode.Pause); * scg.SetValue("_waitForStreaming", false); */ GameObject cloudsBottom = new GameObject(); cloudsBottom.SetActive(false); cloudsBottom.transform.parent = cloudsMain.transform; cloudsBottom.transform.localScale = new Vector3(bottomCloudScale / 2, bottomCloudScale / 2, bottomCloudScale / 2); TessellatedSphereRenderer TSR = cloudsBottom.AddComponent <TessellatedSphereRenderer>(); TSR.tessellationMeshGroup = GameObject.Find("CloudsBottomLayer_GD").GetComponent <TessellatedSphereRenderer>().tessellationMeshGroup; TSR.sharedMaterials = GameObject.Find("CloudsBottomLayer_GD").GetComponent <TessellatedSphereRenderer>().sharedMaterials; foreach (var item in TSR.sharedMaterials) { item.SetColor("_Color", cloudTint.Value); } TSR.maxLOD = 6; TSR.LODBias = 0; TSR.LODRadius = 1f; TessSphereSectorToggle TSST = cloudsBottom.AddComponent <TessSphereSectorToggle>(); TSST.SetValue("_sector", MainClass.SECTOR); GameObject cloudsFluid = new GameObject(); cloudsFluid.layer = 17; cloudsFluid.SetActive(false); cloudsFluid.transform.parent = cloudsMain.transform; SphereCollider cloudSC = cloudsFluid.AddComponent <SphereCollider>(); cloudSC.isTrigger = true; cloudSC.radius = topCloudScale / 2; OWShellCollider cloudShell = cloudsFluid.AddComponent <OWShellCollider>(); cloudShell.SetValue("_innerRadius", bottomCloudScale); CloudLayerFluidVolume cloudLayer = cloudsFluid.AddComponent <CloudLayerFluidVolume>(); cloudLayer.SetValue("_layer", 5); cloudLayer.SetValue("_priority", 1); cloudLayer.SetValue("_density", 1.2f); cloudLayer.SetValue("_fluidType", FluidVolume.Type.CLOUD); cloudLayer.SetValue("_allowShipAutoroll", true); cloudLayer.SetValue("_disableOnStart", false); cloudsTop.SetActive(true); cloudsBottom.SetActive(true); cloudsFluid.SetActive(true); cloudsMain.SetActive(true); }