-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
77 lines (66 loc) · 2.22 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "bevy_atmosphere"
description = "A procedural sky plugin for bevy"
version = "0.12.1"
edition = "2021"
authors = ["JonahPlusPlus <[email protected]>"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/bevy_atmosphere"
homepage = "https://github.com/JonahPlusPlus/bevy_atmosphere"
repository = "https://github.com/JonahPlusPlus/bevy_atmosphere"
include = ["/src", "/examples/*.rs", "/LICENSE*"]
[dependencies]
bevy = { version = "0.15", default-features = false, features = [
"bevy_asset",
"bevy_render",
"bevy_pbr",
"png", # Enable temporary due to 0.15 bug: https://github.com/bevyengine/bevy/issues/16563
] }
bevy_atmosphere_macros = { path = "macros", version = "0.7" }
cfg-if = "1.0"
[dev-dependencies]
bevy_spectator = "0.7"
bevy = { version = "0.15", features = ["bevy_core_pipeline", "x11"] }
[features]
default = ["basic", "all_models"]
basic = ["detection", "dithering", "procedural"] # enables basic features
detection = [] # enables camera detection (disable to add skyboxes manually)
dithering = [] # enables dithering (disable for banding)
# enables the automatic addition of `AtmospherePipelinePlugin` from `AtmospherePlugin` (disable to edit the sky texture manually)
procedural = []
# models
all_models = ["gradient", "nishita"] # enables all models
gradient = [] # enables the gradient model
nishita = [] # enables the nishita model
[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["default"]
[[example]]
name = "cycle"
path = "examples/cycle.rs"
required-features = ["default"]
[[example]]
name = "detection"
path = "examples/detection.rs"
required-features = ["default"]
[[example]]
name = "gradient"
path = "examples/gradient.rs"
required-features = ["default"]
[[example]]
name = "models"
path = "examples/models.rs"
required-features = ["default"]
[[example]]
name = "nishita"
path = "examples/nishita.rs"
required-features = ["default"]
[[example]]
name = "settings"
path = "examples/settings.rs"
required-features = ["default"]
[[example]]
name = "splitscreen"
path = "examples/splitscreen.rs"
required-features = ["default"]