1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
# SPDX-FileCopyrightText: 2009-2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
from bpy.types import (
Panel,
)
from bl_ui.properties_physics_common import (
basic_force_field_settings_ui,
basic_force_field_falloff_ui,
)
class PhysicButtonsPanel:
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = "physics"
@staticmethod
def poll_force_field(context):
ob = context.object
return (ob and (ob.field) and (ob.field.type != 'NONE'))
@staticmethod
def poll_collision(context):
ob = context.object
return (ob and ob.type == 'MESH') and (context.collision)
class PHYSICS_PT_field(PhysicButtonsPanel, Panel):
bl_label = "Force Fields"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
return (context.engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
layout.use_property_split = True
ob = context.object
field = ob.field
layout.prop(field, "type")
class PHYSICS_PT_field_settings(PhysicButtonsPanel, Panel):
bl_label = "Settings"
bl_parent_id = "PHYSICS_PT_field"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
return (context.engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
layout.use_property_split = True
ob = context.object
field = ob.field
if field.type not in {'NONE', 'GUIDE', 'TEXTURE'}:
layout.prop(field, "shape", text="Shape")
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
if field.type == 'NONE':
return # nothing to draw.
elif field.type == 'GUIDE':
col = flow.column()
col.prop(field, "guide_free")
col.prop(field, "falloff_power")
col.prop(field, "use_guide_path_add")
col.prop(field, "use_guide_path_weight")
col.separator()
col = flow.column()
col.prop(field, "guide_clump_amount", text="Clumping Amount")
col.prop(field, "guide_clump_shape")
col.separator()
col.prop(field, "guide_minimum", text="Min Distance")
col = layout.column(align=False, heading="Max Distance")
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)
sub.active = field.use_max_distance
sub.prop(field, "distance_max", text="")
row.prop_decorator(field, "distance_max")
elif field.type == 'TEXTURE':
col = flow.column()
col.prop(field, "texture_mode")
col.separator()
col.prop(field, "strength")
sub = col.column(heading="Affect")
sub.prop(field, "apply_to_location", text="Location")
col = flow.column()
col.prop(field, "texture_nabla")
col.prop(field, "use_object_coords")
col.prop(field, "use_2d_force")
elif field.type == 'FLUID_FLOW':
col = flow.column()
col.prop(field, "strength")
col.prop(field, "flow")
sub = col.column(heading="Affect")
sub.prop(field, "apply_to_location", text="Location")
sub.prop(field, "apply_to_rotation", text="Rotation")
col = flow.column()
col.prop(field, "source_object")
col.prop(field, "use_smoke_density")
else:
del flow
basic_force_field_settings_ui(self, field)
class PHYSICS_PT_field_settings_kink(PhysicButtonsPanel, Panel):
bl_label = "Kink"
bl_parent_id = "PHYSICS_PT_field_settings"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
ob = context.object
return ((ob.field.type == 'GUIDE') and (context.engine in cls.COMPAT_ENGINES))
def draw(self, context):
layout = self.layout
layout.use_property_split = True
ob = context.object
field = ob.field
layout.prop(field, "guide_kink_type", text="Type")
if field.guide_kink_type != 'NONE':
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
col = flow.column()
col.prop(field, "guide_kink_axis")
col.prop(field, "guide_kink_frequency")
col = flow.column()
col.prop(field, "guide_kink_shape")
col.prop(field, "guide_kink_amplitude")
class PHYSICS_PT_field_settings_texture_select(PhysicButtonsPanel, Panel):
bl_label = "Texture"
bl_parent_id = "PHYSICS_PT_field_settings"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
ob = context.object
return ((ob.field.type == 'TEXTURE') and (context.engine in cls.COMPAT_ENGINES))
def draw(self, context):
layout = self.layout
ob = context.object
field = ob.field
layout.row().template_ID(field, "texture", new="texture.new")
class PHYSICS_PT_field_falloff(PhysicButtonsPanel, Panel):
bl_label = "Falloff"
bl_parent_id = "PHYSICS_PT_field"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
ob = context.object
return ((ob.field.type not in {'NONE', 'GUIDE'}) and (context.engine in cls.COMPAT_ENGINES))
def draw(self, context):
layout = self.layout
layout.use_property_split = True
ob = context.object
field = ob.field
layout.prop(field, "falloff_type", text="Shape")
basic_force_field_falloff_ui(self, field)
class PHYSICS_PT_field_falloff_angular(PhysicButtonsPanel, Panel):
bl_label = "Angular"
bl_parent_id = "PHYSICS_PT_field_falloff"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
ob = context.object
return ((ob.field.falloff_type == 'CONE') and (context.engine in cls.COMPAT_ENGINES))
def draw(self, context):
layout = self.layout
layout.use_property_split = True
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
ob = context.object
field = ob.field
col = flow.column()
col.prop(field, "radial_falloff", text="Power")
col = flow.column()
col.prop(field, "use_radial_min", text="Use Min Angle")
sub = col.column()
sub.active = field.use_radial_min
sub.prop(field, "radial_min", text="Min Angle")
col = flow.column()
col.prop(field, "use_radial_max", text="Use Max Angle")
sub = col.column()
sub.active = field.use_radial_max
sub.prop(field, "radial_max", text="Max Angle")
class PHYSICS_PT_field_falloff_radial(PhysicButtonsPanel, Panel):
bl_label = "Radial"
bl_parent_id = "PHYSICS_PT_field_falloff"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_force_field(context):
return False
ob = context.object
return ((ob.field.falloff_type == 'TUBE') and (context.engine in cls.COMPAT_ENGINES))
def draw(self, context):
layout = self.layout
layout.use_property_split = True
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
ob = context.object
field = ob.field
col = flow.column()
col.prop(field, "radial_falloff", text="Power")
col = flow.column()
col.prop(field, "use_radial_min", text="Use Minimum")
sub = col.column()
sub.active = field.use_radial_min
sub.prop(field, "radial_min", text="Min Distance")
col = flow.column()
col.prop(field, "use_radial_max", text="Use Maximum")
sub = col.column()
sub.active = field.use_radial_max
sub.prop(field, "radial_max", text="Max Distance")
def collision_warning(layout):
row = layout.row(align=True)
row.alignment = 'RIGHT'
row.label(text="No collision settings available")
class PHYSICS_PT_collision(PhysicButtonsPanel, Panel):
bl_label = "Collision"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_collision(context):
return False
return (context.engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
layout.use_property_split = True
md = context.collision
coll = md.settings
if not coll:
collision_warning(layout)
return
settings = context.object.collision
layout.active = settings.use
col = layout.column()
col.prop(settings, "absorption", text="Field Absorption")
class PHYSICS_PT_collision_particle(PhysicButtonsPanel, Panel):
bl_label = "Particle"
bl_parent_id = "PHYSICS_PT_collision"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_collision(context):
return False
return (context.engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
md = context.collision
layout.use_property_split = True
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
coll = md.settings
if not coll:
collision_warning(layout)
return
settings = context.object.collision
layout.active = settings.use
col = flow.column()
col.prop(settings, "permeability", slider=True)
col.prop(settings, "stickiness")
col.prop(settings, "use_particle_kill")
col = flow.column()
sub = col.column(align=True)
sub.prop(settings, "damping_factor", text="Damping", slider=True)
sub.prop(settings, "damping_random", text="Randomize", slider=True)
col = flow.column()
sub = col.column(align=True)
sub.prop(settings, "friction_factor", text="Friction", slider=True)
sub.prop(settings, "friction_random", text="Randomize", slider=True)
class PHYSICS_PT_collision_softbody(PhysicButtonsPanel, Panel):
bl_label = "Softbody & Cloth"
bl_parent_id = "PHYSICS_PT_collision"
COMPAT_ENGINES = {
'BLENDER_RENDER',
'BLENDER_EEVEE_NEXT',
'BLENDER_WORKBENCH',
}
@classmethod
def poll(cls, context):
if not PhysicButtonsPanel.poll_collision(context):
return False
return (context.engine in cls.COMPAT_ENGINES)
def draw(self, context):
layout = self.layout
layout.use_property_split = True
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
md = context.collision
coll = md.settings
if not coll:
collision_warning(layout)
return
settings = context.object.collision
layout.active = settings.use
col = flow.column()
col.prop(settings, "damping", text="Damping", slider=True)
col = flow.column()
col.prop(settings, "thickness_outer", text="Thickness Outer", slider=True)
col = flow.column()
col.prop(settings, "thickness_inner", text="Inner", slider=True)
col = flow.column()
col.prop(settings, "cloth_friction")
col = flow.column()
col.prop(settings, "use_culling")
col = flow.column()
col.prop(settings, "use_normal")
classes = (
PHYSICS_PT_field,
PHYSICS_PT_field_settings,
PHYSICS_PT_field_settings_kink,
PHYSICS_PT_field_settings_texture_select,
PHYSICS_PT_field_falloff,
PHYSICS_PT_field_falloff_angular,
PHYSICS_PT_field_falloff_radial,
PHYSICS_PT_collision,
PHYSICS_PT_collision_particle,
PHYSICS_PT_collision_softbody,
)
if __name__ == "__main__": # only for live edit.
from bpy.utils import register_class
for cls in classes:
register_class(cls)
|