Add Chromium-only Blender WebEngine parity work
This commit is contained in:
37
blender-5.2.0/scripts/templates_py/builtin_keyingset.py
Normal file
37
blender-5.2.0/scripts/templates_py/builtin_keyingset.py
Normal file
@@ -0,0 +1,37 @@
|
||||
import bpy
|
||||
|
||||
|
||||
class BUILTIN_KSI_hello(bpy.types.KeyingSetInfo):
|
||||
bl_label = "Hello World KeyingSet"
|
||||
|
||||
# poll - test for whether Keying Set can be used at all
|
||||
def poll(ksi, context):
|
||||
return context.active_object or context.selected_objects
|
||||
|
||||
# iterator - go over all relevant data, calling generate()
|
||||
def iterator(ksi, context, ks):
|
||||
for ob in context.selected_objects:
|
||||
ksi.generate(context, ks, ob)
|
||||
|
||||
# generator - populate Keying Set with property paths to use
|
||||
def generate(ksi, context, ks, data):
|
||||
id_block = data.id_data
|
||||
|
||||
ks.paths.add(id_block, "location")
|
||||
|
||||
for i in range(5):
|
||||
ks.paths.add(id_block, "layers", i, group_method='NAMED', group_name="5x Hello Layers")
|
||||
|
||||
ks.paths.add(id_block, "show_in_front", group_method='NONE')
|
||||
|
||||
|
||||
def register():
|
||||
bpy.utils.register_class(BUILTIN_KSI_hello)
|
||||
|
||||
|
||||
def unregister():
|
||||
bpy.utils.unregister_class(BUILTIN_KSI_hello)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
register()
|
||||
Reference in New Issue
Block a user