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

keyingsets_builtins.py « keyingsets « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf5c66ad01dc0e7d709760952315d837504a0c65 (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
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
# Built-In Keying Sets
# None of these Keying Sets should be removed, as these
# are needed by various parts of Blender in order for them
# to work correctly.

import bpy
from keyingsets_utils import *

###############################
# Built-In KeyingSets

# Location
class BUILTIN_KSI_Location(bpy.types.KeyingSetInfo):
	bl_label = "Location"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	generate = RKS_GEN_location
	
# Rotation
class BUILTIN_KSI_Rotation(bpy.types.KeyingSetInfo):
	bl_label = "Rotation"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	generate = RKS_GEN_rotation
	
# Scale
class BUILTIN_KSI_Scaling(bpy.types.KeyingSetInfo):
	bl_label = "Scaling"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	generate = RKS_GEN_scaling

# ------------
	
# LocRot
class BUILTIN_KSI_LocRot(bpy.types.KeyingSetInfo):
	bl_label = "LocRot"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	def generate(self, context, ks, data):
		# location
		RKS_GEN_location(self, context, ks, data)
		# rotation
		RKS_GEN_rotation(self, context, ks, data)

# LocScale
class BUILTIN_KSI_LocScale(bpy.types.KeyingSetInfo):
	bl_label = "LocScale"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	def generate(self, context, ks, data):
		# location
		RKS_GEN_location(self, context, ks, data)
		# scale
		RKS_GEN_scaling(self, context, ks, data)

# LocRotScale
class BUILTIN_KSI_LocRotScale(bpy.types.KeyingSetInfo):
	bl_label = "LocRotScale"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	def generate(self, context, ks, data):
		# location
		RKS_GEN_location(self, context, ks, data)
		# rotation
		RKS_GEN_rotation(self, context, ks, data)
		# scale
		RKS_GEN_scaling(self, context, ks, data)

# RotScale
class BUILTIN_KSI_RotScale(bpy.types.KeyingSetInfo):
	bl_label = "RotScale"
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	def generate(self, context, ks, data):
		# rotation
		RKS_GEN_rotation(self, context, ks, data)
		# scaling
		RKS_GEN_scaling(self, context, ks, data)
		
# ------------

# Location
class BUILTIN_KSI_VisualLoc(bpy.types.KeyingSetInfo):
	bl_label = "Visual Location"
	
	insertkey_visual = True
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	generate = RKS_GEN_location
	
# Rotation
class BUILTIN_KSI_VisualRot(bpy.types.KeyingSetInfo):
	bl_label = "Visual Rotation"
	
	insertkey_visual = True
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	generate = RKS_GEN_rotation

# VisualLocRot
class BUILTIN_KSI_VisualLocRot(bpy.types.KeyingSetInfo):
	bl_label = "Visual LocRot"
	
	insertkey_visual = True
	
	# poll - use predefined callback for selected bones/objects
	poll = RKS_POLL_selected_items
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	def generate(self, context, ks, data):
		# location
		RKS_GEN_location(self, context, ks, data)
		# rotation
		RKS_GEN_rotation(self, context, ks, data)

# ------------

# Available
class BUILTIN_KSI_Available(bpy.types.KeyingSetInfo):
	bl_label = "Available"
	
	# poll - use predefined callback for selected objects
	# TODO: this should really check whether the selected object (or datablock) 
	# 		has any animation data defined yet
	poll = RKS_POLL_selected_objects
	
	# iterator - use callback for selected bones/objects
	iterator = RKS_ITER_selected_item
	
	# generator - use callback for location 
	generate = RKS_GEN_available

############################### 

classes = [
	BUILTIN_KSI_Location,
	BUILTIN_KSI_Rotation,
	BUILTIN_KSI_Scaling,
	
	BUILTIN_KSI_LocRot,
	BUILTIN_KSI_LocScale,
	BUILTIN_KSI_LocRotScale,
	BUILTIN_KSI_RotScale,
	
	BUILTIN_KSI_VisualLoc,
	BUILTIN_KSI_VisualRot,
	BUILTIN_KSI_VisualLocRot,
	
	BUILTIN_KSI_Available,
]


def register():
    register = bpy.types.register
    for cls in classes:
        register(cls)


def unregister():
    unregister = bpy.types.unregister
    for cls in classes:
        unregister(cls)

if __name__ == "__main__":
    register()

###############################