mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
Set the name of the shape-key datablock to the model name.
Note that this is the data block that holds the list of actual shape-keys, rather than the shape-keys themselves. I'm not sure what it's correct name is (it's just "Key" in RNA). I really dislike this method of setting the name, but the use of "Key" as the datablock name is actually hard-coded into blender's C code :/
This commit is contained in:
parent
0952e918dd
commit
4b29510bfd
1 changed files with 1 additions and 0 deletions
|
@ -146,6 +146,7 @@ def make_shape_key(mdl, framenum, subframenum=0):
|
|||
def build_shape_keys(mdl):
|
||||
mdl.keys = []
|
||||
mdl.obj.shape_key_add("Basis")
|
||||
mdl.mesh.shape_keys.name = mdl.name
|
||||
mdl.obj.active_shape_key_index = 0
|
||||
for i, frame in enumerate(mdl.frames):
|
||||
frame = mdl.frames[i]
|
||||
|
|
Loading…
Reference in a new issue