Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_physics_fluid.py
| Context not available. | |||||
| class PHYSICS_PT_settings(PhysicButtonsPanel, Panel): | class PHYSICS_PT_settings(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Settings" | bl_label = "Domain Settings" | ||||
| bl_parent_id = 'PHYSICS_PT_fluid' | bl_parent_id = 'PHYSICS_PT_fluid' | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | ||||
| Context not available. | |||||
| class PHYSICS_PT_smoke(PhysicButtonsPanel, Panel): | class PHYSICS_PT_smoke(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Smoke" | bl_label = "Gas Settings" | ||||
| bl_parent_id = 'PHYSICS_PT_settings' | bl_parent_id = 'PHYSICS_PT_fluid' | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | ||||
| @classmethod | @classmethod | ||||
| Context not available. | |||||
| class PHYSICS_PT_fire(PhysicButtonsPanel, Panel): | class PHYSICS_PT_fire(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Fire" | bl_label = "Fire" | ||||
| bl_parent_id = 'PHYSICS_PT_settings' | bl_parent_id = 'PHYSICS_PT_smoke' | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | ||||
| Context not available. | |||||
| class PHYSICS_PT_liquid(PhysicButtonsPanel, Panel): | class PHYSICS_PT_liquid(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Liquid" | bl_label = "Liquid Settings" | ||||
| bl_parent_id = 'PHYSICS_PT_settings' | bl_parent_id = 'PHYSICS_PT_fluid' | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_OPENGL'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_OPENGL'} | ||||
| @classmethod | @classmethod | ||||
| Context not available. | |||||
| class PHYSICS_PT_adaptive_domain(PhysicButtonsPanel, Panel): | class PHYSICS_PT_adaptive_domain(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Adaptive Domain" | bl_label = "Adaptive Domain" | ||||
| bl_parent_id = 'PHYSICS_PT_fluid' | bl_parent_id = 'PHYSICS_PT_settings' | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_OPENGL'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_OPENGL'} | ||||
| Context not available. | |||||
| class PHYSICS_PT_noise(PhysicButtonsPanel, Panel): | class PHYSICS_PT_noise(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Noise" | bl_label = "Noise" | ||||
| bl_parent_id = 'PHYSICS_PT_fluid' | bl_parent_id = 'PHYSICS_PT_smoke' | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | ||||
| Context not available. | |||||
| class PHYSICS_PT_mesh(PhysicButtonsPanel, Panel): | class PHYSICS_PT_mesh(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Mesh" | bl_label = "Mesh" | ||||
| bl_parent_id = 'PHYSICS_PT_fluid' | bl_parent_id = 'PHYSICS_PT_liquid' | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | ||||
| Context not available. | |||||
| class PHYSICS_PT_particles(PhysicButtonsPanel, Panel): | class PHYSICS_PT_particles(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Particles" | bl_label = "Particles" | ||||
| bl_parent_id = 'PHYSICS_PT_fluid' | bl_parent_id = 'PHYSICS_PT_liquid' | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_OPENGL'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_OPENGL'} | ||||
| Context not available. | |||||
| class PHYSICS_PT_diffusion(PhysicButtonsPanel, Panel): | class PHYSICS_PT_diffusion(PhysicButtonsPanel, Panel): | ||||
| bl_label = "Diffusion" | bl_label = "Diffusion" | ||||
| bl_parent_id = 'PHYSICS_PT_fluid' | bl_parent_id = 'PHYSICS_PT_liquid' | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | ||||
| Context not available. | |||||
| PHYSICS_PT_fluid, | PHYSICS_PT_fluid, | ||||
| PHYSICS_PT_settings, | PHYSICS_PT_settings, | ||||
| PHYSICS_PT_borders, | PHYSICS_PT_borders, | ||||
| PHYSICS_PT_adaptive_domain, | |||||
| PHYSICS_PT_smoke, | PHYSICS_PT_smoke, | ||||
| PHYSICS_PT_smoke_dissolve, | PHYSICS_PT_smoke_dissolve, | ||||
| PHYSICS_PT_noise, | |||||
| PHYSICS_PT_fire, | PHYSICS_PT_fire, | ||||
| PHYSICS_PT_liquid, | PHYSICS_PT_liquid, | ||||
| PHYSICS_PT_flow_source, | |||||
| PHYSICS_PT_flow_initial_velocity, | |||||
| PHYSICS_PT_flow_texture, | |||||
| PHYSICS_PT_adaptive_domain, | |||||
| PHYSICS_PT_noise, | |||||
| PHYSICS_PT_mesh, | |||||
| PHYSICS_PT_particles, | |||||
| PHYSICS_PT_diffusion, | PHYSICS_PT_diffusion, | ||||
| PHYSICS_PT_particles, | |||||
| PHYSICS_PT_mesh, | |||||
| PHYSICS_PT_guide, | PHYSICS_PT_guide, | ||||
| PHYSICS_PT_collections, | PHYSICS_PT_collections, | ||||
| PHYSICS_PT_cache, | PHYSICS_PT_cache, | ||||
| PHYSICS_PT_export, | PHYSICS_PT_export, | ||||
| PHYSICS_PT_field_weights, | PHYSICS_PT_field_weights, | ||||
| PHYSICS_PT_flow_source, | |||||
| PHYSICS_PT_flow_initial_velocity, | |||||
| PHYSICS_PT_flow_texture, | |||||
| PHYSICS_PT_viewport_display, | PHYSICS_PT_viewport_display, | ||||
| PHYSICS_PT_viewport_display_color, | PHYSICS_PT_viewport_display_color, | ||||
| PHYSICS_PT_viewport_display_debug, | PHYSICS_PT_viewport_display_debug, | ||||
| Context not available. | |||||