-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add multi noise biome source #445
base: master
Are you sure you want to change the base?
Conversation
} | ||
|
||
pub struct MultiNoiseSampler { | ||
pub(crate) temperature: Box<dyn ComponentReference<NoEnvironment>>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be a shared or mutable component reference depending on what is needed, if no environment is needed, they can probably be SharedComponentReference
and then you can call sample
instead of sample_mut
@@ -59,3 +59,4 @@ uuid = { version = "1.11.0", features = ["serde", "v3", "v4"] } | |||
derive_more = { version = "1.0.0", features = ["full"] } | |||
serde = { version = "1.0", features = ["derive"] } | |||
serde_json = "1.0" | |||
serde_with = "3.12" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this was added ?, And is there a way to get the same done without this ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it was added to serialize {"key":value} as Vec<(Key,Value)>, i can change the format of the data in extractor to be an array
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having a library less seems better
@urisinger any progress on this one ? |
I've been busy the past few days, I'll pick it up next week |
Description
this pr adds MultiNoiseBiomeSource and BiomeEntries to generate biomes, which is supposed to mimic MultiNoiseUtil and MultiNoiseBiomeSource.
Testing
not yet
Please follow our Coding Guidelines