Fix T40203: Fluid simulation needs more memory than displayed.

Nothing like a fix, actually, this is an issue in elbeem afaik.
For now, just warn user that complex obstacles may breack things.
This commit is contained in:
Bastien Montagne 2014-08-11 15:01:36 +02:00
parent 1ca8684911
commit c4814c8764
Notes: blender-bot 2023-02-14 10:38:56 +01:00
Referenced by issue #40203, Fluid simulation needs more memory than displayed
1 changed files with 2 additions and 1 deletions

View File

@ -465,7 +465,8 @@ static void rna_def_fluidsim_volume(StructRNA *srna)
RNA_def_property_enum_bitflag_sdna(prop, NULL, "volumeInitType");
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_enum_items(prop, volume_type_items);
RNA_def_property_ui_text(prop, "Volume Initialization", "Volume initialization type");
RNA_def_property_ui_text(prop, "Volume Initialization", "Volume initialization type "
"(WARNING: complex volumes might require too much memory and break simulation)");
prop = RNA_def_property(srna, "use_animated_mesh", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "domainNovecgen", 0);