2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2009-2023 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
#
|
2022-02-11 09:07:11 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2009-10-31 20:16:59 +00:00
|
|
|
|
2010-05-03 03:02:27 +00:00
|
|
|
import bpy
|
2018-08-17 12:01:13 +02:00
|
|
|
from bpy.types import (
|
|
|
|
|
Panel,
|
|
|
|
|
)
|
2013-03-28 15:41:43 +00:00
|
|
|
from bpy.app.translations import contexts as i18n_contexts
|
2013-02-13 11:52:01 +00:00
|
|
|
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2015-01-29 15:35:06 +11:00
|
|
|
class PhysicButtonsPanel:
|
2011-01-23 14:04:31 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
|
bl_context = "physics"
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def poll(cls, context):
|
2018-04-17 13:35:05 +02:00
|
|
|
return (context.object) and context.engine in cls.COMPAT_ENGINES
|
2011-02-04 09:27:25 +00:00
|
|
|
|
|
|
|
|
|
2019-05-12 19:57:56 +02:00
|
|
|
def physics_add(layout, md, name, type, typeicon, toggles):
|
2013-08-23 20:41:21 +00:00
|
|
|
row = layout.row(align=True)
|
2011-01-23 14:04:31 +00:00
|
|
|
if md:
|
2019-04-13 12:44:34 +02:00
|
|
|
row.operator(
|
|
|
|
|
"object.modifier_remove",
|
|
|
|
|
text=name,
|
|
|
|
|
text_ctxt=i18n_contexts.default,
|
|
|
|
|
icon='X',
|
2021-04-07 09:12:34 -05:00
|
|
|
).modifier = md.name
|
2013-04-04 17:01:51 +00:00
|
|
|
if toggles:
|
2013-08-23 20:41:21 +00:00
|
|
|
row.prop(md, "show_viewport", text="")
|
2020-06-12 11:38:22 -04:00
|
|
|
row.prop(md, "show_render", text="")
|
2021-01-09 21:15:53 +03:00
|
|
|
return row
|
2011-01-23 14:04:31 +00:00
|
|
|
else:
|
2018-08-17 12:01:13 +02:00
|
|
|
row.operator(
|
2019-04-13 12:44:34 +02:00
|
|
|
"object.modifier_add",
|
|
|
|
|
text=name,
|
|
|
|
|
text_ctxt=i18n_contexts.default,
|
2019-05-12 19:57:56 +02:00
|
|
|
icon=typeicon,
|
2018-08-17 12:01:13 +02:00
|
|
|
).type = type
|
2023-04-13 13:14:06 +10:00
|
|
|
return None
|
2011-01-23 14:04:31 +00:00
|
|
|
|
2013-02-10 08:54:10 +00:00
|
|
|
|
2019-05-12 19:57:56 +02:00
|
|
|
def physics_add_special(layout, data, name, addop, removeop, typeicon):
|
2013-08-23 20:41:21 +00:00
|
|
|
row = layout.row(align=True)
|
2013-01-23 05:56:44 +00:00
|
|
|
if data:
|
2013-08-23 20:41:21 +00:00
|
|
|
row.operator(removeop, text=name, text_ctxt=i18n_contexts.default, icon='X')
|
2013-01-23 05:56:44 +00:00
|
|
|
else:
|
2019-05-12 19:57:56 +02:00
|
|
|
row.operator(addop, text=name, text_ctxt=i18n_contexts.default, icon=typeicon)
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2013-02-10 08:54:10 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class PHYSICS_PT_add(PhysicButtonsPanel, Panel):
|
2011-01-23 14:04:31 +00:00
|
|
|
bl_label = ""
|
|
|
|
|
bl_options = {'HIDE_HEADER'}
|
2023-01-24 17:58:58 +01:00
|
|
|
COMPAT_ENGINES = {
|
|
|
|
|
'BLENDER_RENDER',
|
|
|
|
|
'BLENDER_EEVEE',
|
|
|
|
|
'BLENDER_EEVEE_NEXT',
|
2023-09-29 14:32:54 +10:00
|
|
|
'BLENDER_WORKBENCH',
|
|
|
|
|
}
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2011-01-23 14:04:31 +00:00
|
|
|
def draw(self, context):
|
2018-08-17 12:01:13 +02:00
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
|
|
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
|
|
|
|
|
|
2013-04-04 17:01:51 +00:00
|
|
|
obj = context.object
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
col = flow.column()
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2021-05-21 14:57:29 +02:00
|
|
|
if not obj.field or obj.field.type == 'NONE':
|
2019-05-12 19:57:56 +02:00
|
|
|
col.operator("object.forcefield_toggle", text="Force Field", icon='FORCE_FORCE')
|
2011-01-23 14:04:31 +00:00
|
|
|
else:
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("object.forcefield_toggle", text="Force Field", icon='X')
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2013-04-04 17:01:51 +00:00
|
|
|
if obj.type == 'MESH':
|
2021-01-09 21:15:53 +03:00
|
|
|
row = physics_add(col, context.collision, "Collision", 'COLLISION', 'MOD_PHYSICS', False)
|
|
|
|
|
if row and obj.collision:
|
2021-01-13 16:37:10 +11:00
|
|
|
row.prop(obj.collision, "use", text="", icon='HIDE_OFF' if obj.collision.use else 'HIDE_ON')
|
2021-01-09 21:15:53 +03:00
|
|
|
|
2019-04-19 07:32:24 +02:00
|
|
|
physics_add(col, context.cloth, "Cloth", 'CLOTH', 'MOD_CLOTH', True)
|
|
|
|
|
physics_add(col, context.dynamic_paint, "Dynamic Paint", 'DYNAMIC_PAINT', 'MOD_DYNAMICPAINT', True)
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
col = flow.column()
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2017-08-11 14:25:36 +02:00
|
|
|
if obj.type in {'MESH', 'LATTICE', 'CURVE', 'SURFACE', 'FONT'}:
|
2019-04-19 07:32:24 +02:00
|
|
|
physics_add(col, context.soft_body, "Soft Body", 'SOFT_BODY', 'MOD_SOFT', True)
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2013-04-04 17:01:51 +00:00
|
|
|
if obj.type == 'MESH':
|
2019-12-16 15:42:07 +01:00
|
|
|
physics_add(col, context.fluid, "Fluid", 'FLUID', 'MOD_FLUIDSIM', True)
|
2010-05-16 12:15:04 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
physics_add_special(
|
2019-04-19 07:32:24 +02:00
|
|
|
col, obj.rigid_body, "Rigid Body",
|
2018-08-17 12:01:13 +02:00
|
|
|
"rigidbody.object_add",
|
|
|
|
|
"rigidbody.object_remove",
|
2022-12-15 17:24:23 +11:00
|
|
|
'RIGID_BODY',
|
2019-05-17 23:22:22 +02:00
|
|
|
)
|
2013-01-23 05:56:44 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
# all types of objects can have rigid body constraint.
|
|
|
|
|
physics_add_special(
|
2019-04-19 07:32:24 +02:00
|
|
|
col, obj.rigid_body_constraint, "Rigid Body Constraint",
|
2018-08-17 12:01:13 +02:00
|
|
|
"rigidbody.constraint_add",
|
|
|
|
|
"rigidbody.constraint_remove",
|
2022-12-15 17:24:23 +11:00
|
|
|
'RIGID_BODY_CONSTRAINT',
|
2019-05-17 23:22:22 +02:00
|
|
|
)
|
2013-01-23 05:56:56 +00:00
|
|
|
|
2010-05-16 12:15:04 +00:00
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
# cache-type can be 'PSYS' 'HAIR' 'FLUID' etc.
|
2011-01-23 14:04:31 +00:00
|
|
|
|
2019-04-19 07:32:24 +02:00
|
|
|
def point_cache_ui(self, cache, enabled, cachetype):
|
2009-10-31 19:31:45 +00:00
|
|
|
layout = self.layout
|
2018-08-17 12:01:13 +02:00
|
|
|
layout.use_property_split = True
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2010-09-03 07:25:37 +00:00
|
|
|
layout.context_pointer_set("point_cache", cache)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
is_saved = bpy.data.is_saved
|
2020-11-17 21:33:28 +01:00
|
|
|
is_liboverride = cache.id_data.override_library is not None
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2019-07-31 14:25:09 +02:00
|
|
|
# NOTE: TODO temporarily used until the animate properties are properly skipped.
|
2018-08-17 12:01:13 +02:00
|
|
|
layout.use_property_decorate = False # No animation (remove this later on).
|
|
|
|
|
|
2013-01-23 05:56:44 +00:00
|
|
|
if not cachetype == 'RIGID_BODY':
|
|
|
|
|
row = layout.row()
|
2018-08-17 12:01:13 +02:00
|
|
|
row.template_list(
|
|
|
|
|
"UI_UL_list", "point_caches", cache, "point_caches",
|
2019-06-21 08:36:03 +10:00
|
|
|
cache.point_caches, "active_index", rows=1,
|
2018-08-17 12:01:13 +02:00
|
|
|
)
|
2013-01-23 05:56:44 +00:00
|
|
|
col = row.column(align=True)
|
2018-10-01 10:45:50 +02:00
|
|
|
col.operator("ptcache.add", icon='ADD', text="")
|
|
|
|
|
col.operator("ptcache.remove", icon='REMOVE', text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
if cachetype in {'PSYS', 'HAIR', 'FLUID'}:
|
2018-08-17 12:01:13 +02:00
|
|
|
col = layout.column()
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
if cachetype == 'FLUID':
|
2018-08-17 12:01:13 +02:00
|
|
|
col.prop(cache, "use_library_path", text="Use Library Path")
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
col.prop(cache, "use_external")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
if cache.use_external:
|
|
|
|
|
col = layout.column()
|
|
|
|
|
col.prop(cache, "index", text="Index")
|
|
|
|
|
col.prop(cache, "filepath", text="Path")
|
2012-04-28 09:00:11 +00:00
|
|
|
|
|
|
|
|
cache_info = cache.info
|
|
|
|
|
if cache_info:
|
2018-07-17 12:17:42 +02:00
|
|
|
col = layout.column()
|
2018-07-19 16:06:37 +10:00
|
|
|
col.alignment = 'RIGHT'
|
2018-07-17 12:17:42 +02:00
|
|
|
col.label(text=cache_info)
|
2009-10-31 19:31:45 +00:00
|
|
|
else:
|
2019-12-16 15:42:07 +01:00
|
|
|
if cachetype in {'FLUID', 'DYNAMIC_PAINT'}:
|
2018-08-17 12:01:13 +02:00
|
|
|
if not is_saved:
|
|
|
|
|
col = layout.column(align=True)
|
|
|
|
|
col.alignment = 'RIGHT'
|
|
|
|
|
col.label(text="Cache is disabled until the file is saved")
|
2010-11-29 18:58:49 +00:00
|
|
|
layout.enabled = False
|
2010-09-27 12:24:12 +00:00
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
if not cache.use_external or cachetype == 'FLUID':
|
2018-06-21 12:41:01 +02:00
|
|
|
col = layout.column(align=True)
|
2010-05-03 16:00:42 +00:00
|
|
|
|
2011-06-16 10:41:00 +00:00
|
|
|
if cachetype not in {'PSYS', 'DYNAMIC_PAINT'}:
|
2018-06-21 12:41:01 +02:00
|
|
|
col.enabled = enabled
|
|
|
|
|
col.prop(cache, "frame_start", text="Simulation Start")
|
|
|
|
|
col.prop(cache, "frame_end")
|
2018-07-17 12:17:42 +02:00
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
if cachetype not in {'FLUID', 'CLOTH', 'DYNAMIC_PAINT', 'RIGID_BODY'}:
|
2018-06-21 12:41:01 +02:00
|
|
|
col.prop(cache, "frame_step")
|
2013-01-15 23:15:32 +00:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
cache_info = cache.info
|
2019-12-16 15:42:07 +01:00
|
|
|
if cachetype != 'FLUID' and cache_info: # avoid empty space.
|
2018-07-17 12:17:42 +02:00
|
|
|
col = layout.column(align=True)
|
2018-07-19 16:06:37 +10:00
|
|
|
col.alignment = 'RIGHT'
|
2018-07-17 12:17:42 +02:00
|
|
|
col.label(text=cache_info)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2013-09-03 16:28:53 +00:00
|
|
|
can_bake = True
|
|
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
if cachetype not in {'FLUID', 'DYNAMIC_PAINT', 'RIGID_BODY'}:
|
2018-08-17 12:01:13 +02:00
|
|
|
if not is_saved:
|
|
|
|
|
col = layout.column(align=True)
|
|
|
|
|
col.alignment = 'RIGHT'
|
2018-08-28 12:34:51 +10:00
|
|
|
col.label(text="Options are disabled until the file is saved")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
|
|
|
|
|
flow.enabled = enabled and is_saved
|
2011-01-02 06:52:47 +00:00
|
|
|
|
2019-03-08 15:50:36 +01:00
|
|
|
col = flow.column(align=True)
|
2018-07-17 12:17:42 +02:00
|
|
|
col.prop(cache, "use_disk_cache")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
subcol = col.column()
|
|
|
|
|
subcol.active = cache.use_disk_cache
|
2019-03-08 15:50:36 +01:00
|
|
|
subcol.prop(cache, "use_library_path", text="Use Library Path")
|
2018-07-17 12:17:42 +02:00
|
|
|
|
|
|
|
|
col = flow.column()
|
|
|
|
|
col.active = cache.use_disk_cache
|
2018-08-17 12:01:13 +02:00
|
|
|
col.prop(cache, "compression", text="Compression")
|
2013-09-03 16:28:53 +00:00
|
|
|
|
2013-09-23 12:14:06 +00:00
|
|
|
if cache.id_data.library and not cache.use_disk_cache:
|
2013-09-03 16:28:53 +00:00
|
|
|
can_bake = False
|
|
|
|
|
|
|
|
|
|
col = layout.column(align=True)
|
2018-07-19 16:06:37 +10:00
|
|
|
col.alignment = 'RIGHT'
|
2018-07-17 12:17:42 +02:00
|
|
|
|
|
|
|
|
col.separator()
|
|
|
|
|
|
|
|
|
|
col.label(text="Linked object baking requires Disk Cache to be enabled")
|
2013-09-03 16:28:53 +00:00
|
|
|
else:
|
|
|
|
|
layout.separator()
|
2010-05-03 16:00:42 +00:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
|
|
|
|
|
col = flow.column()
|
|
|
|
|
col.active = can_bake
|
2010-05-03 16:00:42 +00:00
|
|
|
|
2020-11-17 21:33:28 +01:00
|
|
|
if is_liboverride and not cache.use_disk_cache:
|
|
|
|
|
col.operator("ptcache.bake", icon='ERROR', text="Bake (Disk Cache mandatory)")
|
|
|
|
|
elif cache.is_baked is True:
|
2019-01-31 19:49:47 +01:00
|
|
|
col.operator("ptcache.free_bake", text="Delete Bake")
|
2010-05-02 14:34:37 +00:00
|
|
|
else:
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("ptcache.bake", text="Bake").bake = True
|
2010-05-03 16:00:42 +00:00
|
|
|
|
2010-05-02 14:34:37 +00:00
|
|
|
sub = col.row()
|
2020-03-29 15:09:42 +02:00
|
|
|
sub.enabled = enabled
|
2020-10-24 11:42:17 -07:00
|
|
|
sub.operator("ptcache.bake", text="Calculate to Frame").bake = False
|
2010-05-02 14:34:37 +00:00
|
|
|
|
|
|
|
|
sub = col.column()
|
|
|
|
|
sub.enabled = enabled
|
2011-09-21 15:18:38 +00:00
|
|
|
sub.operator("ptcache.bake_from_cache", text="Current Cache to Bake")
|
2010-05-03 16:00:42 +00:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
col = flow.column()
|
2011-09-21 15:18:38 +00:00
|
|
|
col.operator("ptcache.bake_all", text="Bake All Dynamics").bake = True
|
2019-01-31 19:49:47 +01:00
|
|
|
col.operator("ptcache.free_bake_all", text="Delete All Bakes")
|
2020-10-24 11:42:17 -07:00
|
|
|
col.operator("ptcache.bake_all", text="Update All to Frame").bake = False
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-05-16 12:15:04 +00:00
|
|
|
|
2019-04-19 07:32:24 +02:00
|
|
|
def effector_weights_ui(self, weights, weight_type):
|
2009-11-14 13:35:44 +00:00
|
|
|
layout = self.layout
|
2018-06-21 12:41:01 +02:00
|
|
|
layout.use_property_split = True
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2019-07-31 14:25:09 +02:00
|
|
|
# NOTE: TODO temporarily used until the animate properties are properly skipped.
|
2018-08-17 12:01:13 +02:00
|
|
|
layout.use_property_decorate = False # No animation (remove this later on).
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2018-11-28 17:49:52 +01:00
|
|
|
layout.prop(weights, "collection")
|
2018-08-24 12:09:56 +10:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
col = flow.column()
|
|
|
|
|
col.prop(weights, "gravity", slider=True)
|
|
|
|
|
col.prop(weights, "all", slider=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(weights, "force", slider=True)
|
|
|
|
|
col.prop(weights, "vortex", slider=True)
|
2018-07-17 12:17:42 +02:00
|
|
|
|
|
|
|
|
col = flow.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(weights, "magnetic", slider=True)
|
2018-07-17 12:17:42 +02:00
|
|
|
col.prop(weights, "harmonic", slider=True)
|
|
|
|
|
col.prop(weights, "charge", slider=True)
|
|
|
|
|
col.prop(weights, "lennardjones", slider=True)
|
|
|
|
|
|
|
|
|
|
col = flow.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(weights, "wind", slider=True)
|
2010-08-19 12:51:31 +00:00
|
|
|
col.prop(weights, "curve_guide", slider=True)
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(weights, "texture", slider=True)
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2019-12-16 15:42:07 +01:00
|
|
|
if weight_type != 'FLUID':
|
2012-10-10 13:18:07 +00:00
|
|
|
col.prop(weights, "smokeflow", slider=True)
|
2009-11-18 21:57:13 +00:00
|
|
|
|
2018-07-17 12:17:42 +02:00
|
|
|
col = flow.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(weights, "turbulence", slider=True)
|
|
|
|
|
col.prop(weights, "drag", slider=True)
|
|
|
|
|
col.prop(weights, "boid", slider=True)
|
2009-11-18 21:57:13 +00:00
|
|
|
|
|
|
|
|
|
2019-04-19 07:32:24 +02:00
|
|
|
def basic_force_field_settings_ui(self, field):
|
2009-10-31 19:31:45 +00:00
|
|
|
layout = self.layout
|
2018-06-25 17:04:34 +02:00
|
|
|
layout.use_property_split = True
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
if not field or field.type == 'NONE':
|
|
|
|
|
return
|
|
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
|
|
|
|
|
|
|
|
|
|
col = flow.column()
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
|
if field.type == 'DRAG':
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(field, "linear_drag", text="Linear")
|
2009-10-31 19:31:45 +00:00
|
|
|
else:
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(field, "strength")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
|
if field.type == 'TURBULENCE':
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(field, "size")
|
|
|
|
|
col.prop(field, "flow")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
elif field.type == 'HARMONIC':
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(field, "harmonic_damping", text="Damping")
|
2009-12-21 11:19:07 +00:00
|
|
|
col.prop(field, "rest_length")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
elif field.type == 'VORTEX' and field.shape != 'POINT':
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(field, "inflow")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
elif field.type == 'DRAG':
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(field, "quadratic_drag", text="Quadratic")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
else:
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(field, "flow")
|
2009-11-21 00:05:43 +00:00
|
|
|
|
UI: Layout changes for new checkbox layout possibilities
Follow-up to previous commit.
Some examples:
{F8473507} {F8473508} {F8473509} {F8473510}
For more screenshots, please see D7430.
We use column or row headings here to bring more structure, and to give
the eye visual anchors which aid eye-scanning. The left-aligned
checkboxes likewise help with this. And we keep the adherence to the
center line, so the alignment matches up between the various buttons and
controls.
* Changes the property split percentage from 50/50% to 40/60%. This is
needed to give enough space for the checkboxes. But in most cases this
looks better anyway - see Transform panel. In some cases it simply
fills out the available space more efficently.
* Fix various hacks where we previously used manually defined splits.
When we did this, the alignment was never quite right, and the layout
code was a mess.
* Adds column headings to many places where a list of checkboxes all
share a common purpose or leading text.
* Add checkbox + value configurations various places where a checkbox
only serves to enable the value slider
* Removes most uses of grid flow layout. The grid flow layouts combine
poorly with column headings, and also they would mess alignment up
badly. The grid flow layouts also often made buttons and controls jump
around on the screen if you would just resize editors slightly,
causing visual confusion, making users lose their place. The logic for
at what time the list of items would re-flow was often flawed, jumping
to multiple columns too fast or too late - and frankly, the grid flow
layouts would often just look bad.
Maniphest Task: https://developer.blender.org/T65965
Differential Revision: https://developer.blender.org/D7430
Reviewed by: Brecht Van Lommel, Pablo Vazquez.
Most work here by William Reynish, few changes by Julian Eisel.
2020-04-17 16:54:03 +02:00
|
|
|
sub = col.column(heading="Affect")
|
|
|
|
|
|
|
|
|
|
sub.prop(field, "apply_to_location", text="Location")
|
|
|
|
|
sub.prop(field, "apply_to_rotation", text="Rotation")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
|
|
|
|
col = flow.column()
|
2011-02-18 07:42:38 +00:00
|
|
|
sub = col.column(align=True)
|
2018-08-17 12:01:13 +02:00
|
|
|
sub.prop(field, "noise", text="Noise Amount")
|
|
|
|
|
sub.prop(field, "seed", text="Seed")
|
|
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
if field.type == 'TURBULENCE':
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(field, "use_global_coords", text="Global")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2009-12-21 11:19:07 +00:00
|
|
|
elif field.type == 'HARMONIC':
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(field, "use_multiple_springs")
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2017-02-23 19:00:03 -03:00
|
|
|
if field.type == 'FORCE':
|
2018-06-05 16:32:11 +02:00
|
|
|
col.prop(field, "use_gravity_falloff", text="Gravitation")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(field, "use_absorption")
|
2020-06-12 21:33:38 +03:00
|
|
|
col.prop(field, "wind_factor")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2018-06-20 16:41:02 +02:00
|
|
|
|
2019-04-19 07:32:24 +02:00
|
|
|
def basic_force_field_falloff_ui(self, field):
|
2009-10-31 19:31:45 +00:00
|
|
|
layout = self.layout
|
2009-11-21 00:05:43 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
if not field or field.type == 'NONE':
|
|
|
|
|
return
|
|
|
|
|
|
UI: Layout changes for new checkbox layout possibilities
Follow-up to previous commit.
Some examples:
{F8473507} {F8473508} {F8473509} {F8473510}
For more screenshots, please see D7430.
We use column or row headings here to bring more structure, and to give
the eye visual anchors which aid eye-scanning. The left-aligned
checkboxes likewise help with this. And we keep the adherence to the
center line, so the alignment matches up between the various buttons and
controls.
* Changes the property split percentage from 50/50% to 40/60%. This is
needed to give enough space for the checkboxes. But in most cases this
looks better anyway - see Transform panel. In some cases it simply
fills out the available space more efficently.
* Fix various hacks where we previously used manually defined splits.
When we did this, the alignment was never quite right, and the layout
code was a mess.
* Adds column headings to many places where a list of checkboxes all
share a common purpose or leading text.
* Add checkbox + value configurations various places where a checkbox
only serves to enable the value slider
* Removes most uses of grid flow layout. The grid flow layouts combine
poorly with column headings, and also they would mess alignment up
badly. The grid flow layouts also often made buttons and controls jump
around on the screen if you would just resize editors slightly,
causing visual confusion, making users lose their place. The logic for
at what time the list of items would re-flow was often flawed, jumping
to multiple columns too fast or too late - and frankly, the grid flow
layouts would often just look bad.
Maniphest Task: https://developer.blender.org/T65965
Differential Revision: https://developer.blender.org/D7430
Reviewed by: Brecht Van Lommel, Pablo Vazquez.
Most work here by William Reynish, few changes by Julian Eisel.
2020-04-17 16:54:03 +02:00
|
|
|
col = layout.column()
|
2018-08-17 12:01:13 +02:00
|
|
|
col.prop(field, "z_direction")
|
2011-09-21 15:18:38 +00:00
|
|
|
col.prop(field, "falloff_power", text="Power")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2020-04-17 22:05:22 +02:00
|
|
|
col = layout.column(align=False, heading="Min Distance")
|
UI: Layout changes for new checkbox layout possibilities
Follow-up to previous commit.
Some examples:
{F8473507} {F8473508} {F8473509} {F8473510}
For more screenshots, please see D7430.
We use column or row headings here to bring more structure, and to give
the eye visual anchors which aid eye-scanning. The left-aligned
checkboxes likewise help with this. And we keep the adherence to the
center line, so the alignment matches up between the various buttons and
controls.
* Changes the property split percentage from 50/50% to 40/60%. This is
needed to give enough space for the checkboxes. But in most cases this
looks better anyway - see Transform panel. In some cases it simply
fills out the available space more efficently.
* Fix various hacks where we previously used manually defined splits.
When we did this, the alignment was never quite right, and the layout
code was a mess.
* Adds column headings to many places where a list of checkboxes all
share a common purpose or leading text.
* Add checkbox + value configurations various places where a checkbox
only serves to enable the value slider
* Removes most uses of grid flow layout. The grid flow layouts combine
poorly with column headings, and also they would mess alignment up
badly. The grid flow layouts also often made buttons and controls jump
around on the screen if you would just resize editors slightly,
causing visual confusion, making users lose their place. The logic for
at what time the list of items would re-flow was often flawed, jumping
to multiple columns too fast or too late - and frankly, the grid flow
layouts would often just look bad.
Maniphest Task: https://developer.blender.org/T65965
Differential Revision: https://developer.blender.org/D7430
Reviewed by: Brecht Van Lommel, Pablo Vazquez.
Most work here by William Reynish, few changes by Julian Eisel.
2020-04-17 16:54:03 +02:00
|
|
|
col.use_property_decorate = False
|
|
|
|
|
row = col.row(align=True)
|
|
|
|
|
sub = row.row(align=True)
|
|
|
|
|
sub.prop(field, "use_min_distance", text="")
|
|
|
|
|
sub = sub.row(align=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
sub.active = field.use_min_distance
|
UI: Layout changes for new checkbox layout possibilities
Follow-up to previous commit.
Some examples:
{F8473507} {F8473508} {F8473509} {F8473510}
For more screenshots, please see D7430.
We use column or row headings here to bring more structure, and to give
the eye visual anchors which aid eye-scanning. The left-aligned
checkboxes likewise help with this. And we keep the adherence to the
center line, so the alignment matches up between the various buttons and
controls.
* Changes the property split percentage from 50/50% to 40/60%. This is
needed to give enough space for the checkboxes. But in most cases this
looks better anyway - see Transform panel. In some cases it simply
fills out the available space more efficently.
* Fix various hacks where we previously used manually defined splits.
When we did this, the alignment was never quite right, and the layout
code was a mess.
* Adds column headings to many places where a list of checkboxes all
share a common purpose or leading text.
* Add checkbox + value configurations various places where a checkbox
only serves to enable the value slider
* Removes most uses of grid flow layout. The grid flow layouts combine
poorly with column headings, and also they would mess alignment up
badly. The grid flow layouts also often made buttons and controls jump
around on the screen if you would just resize editors slightly,
causing visual confusion, making users lose their place. The logic for
at what time the list of items would re-flow was often flawed, jumping
to multiple columns too fast or too late - and frankly, the grid flow
layouts would often just look bad.
Maniphest Task: https://developer.blender.org/T65965
Differential Revision: https://developer.blender.org/D7430
Reviewed by: Brecht Van Lommel, Pablo Vazquez.
Most work here by William Reynish, few changes by Julian Eisel.
2020-04-17 16:54:03 +02:00
|
|
|
sub.prop(field, "distance_min", text="")
|
|
|
|
|
row.prop_decorator(field, "distance_min")
|
|
|
|
|
|
2020-04-17 22:05:22 +02:00
|
|
|
col = layout.column(align=False, heading="Max Distance")
|
UI: Layout changes for new checkbox layout possibilities
Follow-up to previous commit.
Some examples:
{F8473507} {F8473508} {F8473509} {F8473510}
For more screenshots, please see D7430.
We use column or row headings here to bring more structure, and to give
the eye visual anchors which aid eye-scanning. The left-aligned
checkboxes likewise help with this. And we keep the adherence to the
center line, so the alignment matches up between the various buttons and
controls.
* Changes the property split percentage from 50/50% to 40/60%. This is
needed to give enough space for the checkboxes. But in most cases this
looks better anyway - see Transform panel. In some cases it simply
fills out the available space more efficently.
* Fix various hacks where we previously used manually defined splits.
When we did this, the alignment was never quite right, and the layout
code was a mess.
* Adds column headings to many places where a list of checkboxes all
share a common purpose or leading text.
* Add checkbox + value configurations various places where a checkbox
only serves to enable the value slider
* Removes most uses of grid flow layout. The grid flow layouts combine
poorly with column headings, and also they would mess alignment up
badly. The grid flow layouts also often made buttons and controls jump
around on the screen if you would just resize editors slightly,
causing visual confusion, making users lose their place. The logic for
at what time the list of items would re-flow was often flawed, jumping
to multiple columns too fast or too late - and frankly, the grid flow
layouts would often just look bad.
Maniphest Task: https://developer.blender.org/T65965
Differential Revision: https://developer.blender.org/D7430
Reviewed by: Brecht Van Lommel, Pablo Vazquez.
Most work here by William Reynish, few changes by Julian Eisel.
2020-04-17 16:54:03 +02:00
|
|
|
col.use_property_decorate = False
|
|
|
|
|
row = col.row(align=True)
|
|
|
|
|
sub = row.row(align=True)
|
|
|
|
|
sub.prop(field, "use_max_distance", text="")
|
|
|
|
|
sub = sub.row(align=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
sub.active = field.use_max_distance
|
UI: Layout changes for new checkbox layout possibilities
Follow-up to previous commit.
Some examples:
{F8473507} {F8473508} {F8473509} {F8473510}
For more screenshots, please see D7430.
We use column or row headings here to bring more structure, and to give
the eye visual anchors which aid eye-scanning. The left-aligned
checkboxes likewise help with this. And we keep the adherence to the
center line, so the alignment matches up between the various buttons and
controls.
* Changes the property split percentage from 50/50% to 40/60%. This is
needed to give enough space for the checkboxes. But in most cases this
looks better anyway - see Transform panel. In some cases it simply
fills out the available space more efficently.
* Fix various hacks where we previously used manually defined splits.
When we did this, the alignment was never quite right, and the layout
code was a mess.
* Adds column headings to many places where a list of checkboxes all
share a common purpose or leading text.
* Add checkbox + value configurations various places where a checkbox
only serves to enable the value slider
* Removes most uses of grid flow layout. The grid flow layouts combine
poorly with column headings, and also they would mess alignment up
badly. The grid flow layouts also often made buttons and controls jump
around on the screen if you would just resize editors slightly,
causing visual confusion, making users lose their place. The logic for
at what time the list of items would re-flow was often flawed, jumping
to multiple columns too fast or too late - and frankly, the grid flow
layouts would often just look bad.
Maniphest Task: https://developer.blender.org/T65965
Differential Revision: https://developer.blender.org/D7430
Reviewed by: Brecht Van Lommel, Pablo Vazquez.
Most work here by William Reynish, few changes by Julian Eisel.
2020-04-17 16:54:03 +02:00
|
|
|
sub.prop(field, "distance_max", text="")
|
|
|
|
|
row.prop_decorator(field, "distance_max")
|
2017-03-18 20:03:24 +11:00
|
|
|
|
2020-10-02 10:10:01 +10:00
|
|
|
|
2017-03-18 20:03:24 +11:00
|
|
|
classes = (
|
|
|
|
|
PHYSICS_PT_add,
|
|
|
|
|
)
|
|
|
|
|
|
2018-08-17 12:01:13 +02:00
|
|
|
|
2011-04-04 10:13:04 +00:00
|
|
|
if __name__ == "__main__": # only for live edit.
|
2017-03-18 20:03:24 +11:00
|
|
|
from bpy.utils import register_class
|
|
|
|
|
for cls in classes:
|
|
|
|
|
register_class(cls)
|