Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
93226d01
Commit
93226d01
authored
12 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
support for using other objects particles as input
parent
31315311
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
object_fracture_cell/__init__.py
+5
-3
5 additions, 3 deletions
object_fracture_cell/__init__.py
object_fracture_cell/fracture_cell_setup.py
+15
-6
15 additions, 6 deletions
object_fracture_cell/fracture_cell_setup.py
with
20 additions
and
9 deletions
object_fracture_cell/__init__.py
+
5
−
3
View file @
93226d01
...
...
@@ -183,12 +183,14 @@ class FractureCell(Operator):
name
=
"
Source
"
,
items
=
((
'
VERT_OWN
'
,
"
Own Verts
"
,
"
Use own vertices
"
),
(
'
VERT_CHILD
'
,
"
Child Verts
"
,
"
Use own vertices
"
),
(
'
PARTICLE
'
,
"
Particles
"
,
(
"
All particle systems of the
"
"
source object
"
)),
(
'
PARTICLE_OWN
'
,
"
Own Particles
"
,
(
"
All particle systems of the
"
"
source object
"
)),
(
'
PARTICLE_CHILD
'
,
"
Child Particles
"
,
(
"
All particle systems of the
"
"
child objects
"
)),
(
'
PENCIL
'
,
"
Grease Pencil
"
,
"
This objects grease pencil
"
),
),
options
=
{
'
ENUM_FLAG
'
},
default
=
{
'
PARTICLE
'
,
'
VERT
_OWN
'
}
#
'VERT_OWN',
'EDGE_OWN', 'FACE_OWN'
default
=
{
'
PARTICLE_OWN
'
,
'
VERT_OWN
'
}
,
)
source_limit
=
IntProperty
(
...
...
This diff is collapsed.
Click to expand it.
object_fracture_cell/fracture_cell_setup.py
+
15
−
6
View file @
93226d01
...
...
@@ -34,7 +34,8 @@ _redraw_yasiamevil.arg = dict(type='DRAW_WIN_SWAP', iterations=1)
def
_points_from_object
(
obj
,
source
):
_source_all
=
{
'
PARTICLE
'
,
'
PENCIL
'
,
'
PARTICLE_OWN
'
,
'
PARTICLE_CHILD
'
,
'
PENCIL
'
,
'
VERT_OWN
'
,
'
VERT_CHILD
'
,
}
...
...
@@ -77,6 +78,12 @@ def _points_from_object(obj, source):
points
.
extend
([
matrix
*
v
.
co
for
v
in
mesh
.
vertices
])
bpy
.
data
.
meshes
.
remove
(
mesh
)
def
points_from_particles
(
obj
):
points
.
extend
([
p
.
location
.
copy
()
for
psys
in
obj
.
particle_systems
for
p
in
psys
.
particles
])
# geom own
if
'
VERT_OWN
'
in
source
:
points_from_verts
(
obj
)
...
...
@@ -87,10 +94,12 @@ def _points_from_object(obj, source):
points_from_verts
(
obj_child
)
# geom particles
if
'
PARTICLE
'
in
source
:
points
.
extend
([
p
.
location
.
copy
()
for
psys
in
obj
.
particle_systems
for
p
in
psys
.
particles
])
if
'
PARTICLE_OWN
'
in
source
:
points_from_verts
(
obj
)
if
'
PARTICLE_CHILD
'
in
source
:
for
obj_child
in
obj
.
children
:
points_from_particles
(
obj_child
)
# grease pencil
def
get_points
(
stroke
):
...
...
@@ -115,7 +124,7 @@ def _points_from_object(obj, source):
def
cell_fracture_objects
(
scene
,
obj
,
source
=
{
'
PARTICLE
'
},
source
=
{
'
PARTICLE
_OWN
'
},
source_limit
=
0
,
source_noise
=
0.0
,
clean
=
True
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment