Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-07-26 17:59:49 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-07-26 17:59:49 +0300
commit231b313c559b6a4969051e2f0fb978c59cf3d044 (patch)
treec99f0182fc6835ec14cf7d658d2e795552c285f3 /source/blender/makesdna/DNA_fluid_types.h
parent3059853732d7f42c42b9aa45e3f6379302d66eb4 (diff)
Mantaflow: Remove Noise Type Option
Mantflow only supports wavelet noise, thus the parameter with only one option is no longer useful. Differential Revision: https://developer.blender.org/D6770
Diffstat (limited to 'source/blender/makesdna/DNA_fluid_types.h')
-rw-r--r--source/blender/makesdna/DNA_fluid_types.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/source/blender/makesdna/DNA_fluid_types.h b/source/blender/makesdna/DNA_fluid_types.h
index cec6eb0d044..57523f1c4d8 100644
--- a/source/blender/makesdna/DNA_fluid_types.h
+++ b/source/blender/makesdna/DNA_fluid_types.h
@@ -198,11 +198,6 @@ enum {
FLUID_DOMAIN_TYPE_LIQUID = 1,
};
-/* Smoke noise types. */
-enum {
- FLUID_NOISE_TYPE_WAVELET = (1 << 0),
-};
-
/* Mesh levelset generator types. */
enum {
FLUID_DOMAIN_MESH_IMPROVED = 0,
@@ -580,8 +575,7 @@ typedef struct FluidDomainSettings {
float noise_time_anim;
int res_noise[3];
int noise_scale;
- short noise_type; /* Noise type: wave, curl, anisotropic. */
- char _pad3[2]; /* Unused. */
+ char _pad3[4]; /* Unused. */
/* Liquid domain options. */
float particle_randomness;