Welcome to mirror list, hosted at ThFree Co, Russian Federation.

properties_physics_common.py « ui « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d2643c75cc7a0c3151a9634be5ea3b73d80208c (plain)
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
# This software is distributable under the terms of the GNU
# General Public License (GPL) v2, the text of which can be found at
# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
# using this module constitutes acceptance of the terms of this License.

# <pep8 compliant>
import bpy


def point_cache_ui(self, cache, enabled, particles, smoke):
    layout = self.layout
    layout.set_context_pointer("PointCache", cache)

    row = layout.row()
    row.template_list(cache, "point_cache_list", cache, "active_point_cache_index", rows=2)
    col = row.column(align=True)
    col.itemO("ptcache.add_new", icon='ICON_ZOOMIN', text="")
    col.itemO("ptcache.remove", icon='ICON_ZOOMOUT', text="")

    row = layout.row()
    row.itemL(text="File Name:")
    if particles:
        row.itemR(cache, "external")

    if cache.external:
        split = layout.split(percentage=0.80)
        split.itemR(cache, "name", text="")
        split.itemR(cache, "index", text="")

        layout.itemL(text="File Path:")
        layout.itemR(cache, "filepath", text="")

        layout.itemL(text=cache.info)
    else:
        layout.itemR(cache, "name", text="")

        if not particles:
            row = layout.row()
            row.enabled = enabled
            row.itemR(cache, "start_frame")
            row.itemR(cache, "end_frame")

        row = layout.row()

        if cache.baked == True:
            row.itemO("ptcache.free_bake", text="Free Bake")
        else:
            row.item_booleanO("ptcache.bake", "bake", True, text="Bake")

        sub = row.row()
        sub.enabled = (cache.frames_skipped or cache.outdated) and enabled
        sub.itemO("ptcache.bake", "bake", False, text="Calculate to Current Frame")

        row = layout.row()
        row.enabled = enabled
        row.itemO("ptcache.bake_from_cache", text="Current Cache to Bake")
        if not smoke:
            row.itemR(cache, "step")

        if not smoke:
            row = layout.row()
            sub = row.row()
            sub.enabled = enabled
            sub.itemR(cache, "quick_cache")
            row.itemR(cache, "disk_cache")

        layout.itemL(text=cache.info)

        layout.itemS()

        row = layout.row()
        row.item_booleanO("ptcache.bake_all", "bake", True, text="Bake All Dynamics")
        row.itemO("ptcache.free_bake_all", text="Free All Bakes")
        layout.itemO("ptcache.bake_all", "bake", False, text="Update All Dynamics to current frame")


def effector_weights_ui(self, weights):
        layout = self.layout

        layout.itemR(weights, "group")

        split = layout.split()
        split.itemR(weights, "gravity", slider=True)
        split.itemR(weights, "all", slider=True)

        layout.itemS()

        flow = layout.column_flow()
        flow.itemR(weights, "force", slider=True)
        flow.itemR(weights, "vortex", slider=True)
        flow.itemR(weights, "magnetic", slider=True)
        flow.itemR(weights, "wind", slider=True)
        flow.itemR(weights, "curveguide", slider=True)
        flow.itemR(weights, "texture", slider=True)
        flow.itemR(weights, "harmonic", slider=True)
        flow.itemR(weights, "charge", slider=True)
        flow.itemR(weights, "lennardjones", slider=True)
        flow.itemR(weights, "turbulence", slider=True)
        flow.itemR(weights, "drag", slider=True)
        flow.itemR(weights, "boid", slider=True)


def basic_force_field_settings_ui(self, field):
    layout = self.layout
    split = layout.split()

    if not field or field.type == 'NONE':
        return

    col = split.column()

    if field.type == 'DRAG':
        col.itemR(field, "linear_drag", text="Linear")
    else:
        col.itemR(field, "strength")

    if field.type == 'TURBULENCE':
        col.itemR(field, "size")
        col.itemR(field, "flow")
    elif field.type == 'HARMONIC':
        col.itemR(field, "harmonic_damping", text="Damping")
    elif field.type == 'VORTEX' and field.shape != 'POINT':
        col.itemR(field, "inflow")
    elif field.type == 'DRAG':
        col.itemR(field, "quadratic_drag", text="Quadratic")
    else:
        col.itemR(field, "flow")

    col = split.column()
    col.itemR(field, "noise")
    col.itemR(field, "seed")
    if field.type == 'TURBULENCE':
        col.itemR(field, "global_coordinates", text="Global")

    split = layout.split()

    col = split.column()
    col.itemL(text="Effect point:")
    col.itemR(field, "do_location")
    col.itemR(field, "do_rotation")

    sub = split.column()
    sub.itemL(text="Collision:")
    sub.itemR(field, "do_absorption")


def basic_force_field_falloff_ui(self, field):
    layout = self.layout
    split = layout.split(percentage=0.35)

    if not field or field.type == 'NONE':
        return

    col = split.column()
    col.itemR(field, "z_direction", text="")
    col.itemR(field, "use_min_distance", text="Use Minimum")
    col.itemR(field, "use_max_distance", text="Use Maximum")

    col = split.column()
    col.itemR(field, "falloff_power", text="Power")

    sub = col.column()
    sub.active = field.use_min_distance
    sub.itemR(field, "minimum_distance", text="Distance")

    sub = col.column()
    sub.active = field.use_max_distance
    sub.itemR(field, "maximum_distance", text="Distance")