Corrects the fact the dim layers were fixed in place due to an indentation error. (#8461)

This commit is contained in:
Moony
2022-05-26 03:38:11 -05:00
committed by GitHub
parent e8b0b10bf5
commit 8b253746e4
4 changed files with 182 additions and 4 deletions

View File

@@ -14,18 +14,18 @@
- texture:
!type:GeneratedParallaxTextureSource
id: "hq_wizard_stars_slower"
configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml"
configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml"
slowness: 0.15
- texture:
!type:GeneratedParallaxTextureSource
id: "hq_wizard_stars_dim"
configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml"
slowness: 0.375
slowness: 0.375
- texture:
!type:GeneratedParallaxTextureSource
id: "hq_wizard_stars_dim_faster"
configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml"
slowness: 0.125
configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml"
slowness: 0.125
layersLQ:
- texture:
!type:GeneratedParallaxTextureSource

View File

@@ -0,0 +1,57 @@
# Clear to black.
[[layers]]
type = "clear"
color = "#000000"
# Bright background nebula stars.
[[layers]]
type = "points"
closecolor = "#7E86BF"
count = 1000
seed = 4810
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.37"
maskseed = 3551
# Bright background nebula stars, dim edge.
[[layers]]
type = "points"
closecolor = "#3D415C"
pointsize = 2
count = 1000
seed = 4810
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.37"
maskseed = 3551
# Couple of odd bright yellow-ish stars.
[[layers]]
type = "points"
closecolor = "#FFD363"
count = 30
seed = 9019
# And their dim edge.
[[layers]]
type = "points"
closecolor = "#43371A"
pointsize = 2
count = 30
seed = 9019
# Colour-to-alpha.
[[layers]]
type = "toalpha"

View File

@@ -0,0 +1,73 @@
# Clear to black.
[[layers]]
type = "clear"
color = "#000000"
# Dim background nebula stars.
[[layers]]
type = "points"
seed = 4920
closecolor = "#4B5072"
count = 1500
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.0"
maskseed = 6734
# Bright background nebula stars.
[[layers]]
type = "points"
closecolor = "#7E86BF"
count = 250
seed = 5848
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.37"
maskseed = 8398
# Bright background nebula stars, dim edge.
[[layers]]
type = "points"
closecolor = "#3D415C"
pointsize = 2
count = 250
seed = 5848
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.37"
maskseed = 8398
# Couple of odd bright yellow-ish stars.
[[layers]]
type = "points"
closecolor = "#FFD363"
count = 15
seed = 3748
# And their dim edge.
[[layers]]
type = "points"
closecolor = "#43371A"
pointsize = 2
count = 15
seed = 3748
# Colour-to-alpha.
[[layers]]
type = "toalpha"

View File

@@ -19,6 +19,54 @@ maskfrequency = "3"
maskthreshold = "0.0"
maskseed = 3551
# Bright background nebula stars.
[[layers]]
type = "points"
closecolor = "#7E86BF"
count = 250
seed = 6843
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.37"
maskseed = 2938
# Bright background nebula stars, dim edge.
[[layers]]
type = "points"
closecolor = "#3D415C"
pointsize = 2
count = 250
seed = 6843
mask = true
masknoise_type = "fbm"
maskoctaves = 4
maskpersistence = "0.5"
maskpower = "0.35"
masklacunarity = "1.5"
maskfrequency = "3"
maskthreshold = "0.37"
maskseed = 2938
# Couple of odd bright yellow-ish stars.
[[layers]]
type = "points"
closecolor = "#FFD363"
count = 15
seed = 3748
# And their dim edge.
[[layers]]
type = "points"
closecolor = "#43371A"
pointsize = 2
count = 15
seed = 3748
# Colour-to-alpha.
[[layers]]
type = "toalpha"