public class KeyingSet extends CFacade
KeyingSet
definition (ks) A KeyingSet
defines a group of properties that should be keyframed together, providing a convenient way for animators to insert keyframes without resorting to Auto-Keyframing.
A few 'generic' (non-absolute and dependent on templates) KeyingSets are defined 'built-in' to facilitate easy animating for the casual animator without the need to add extra steps to the rigging process.
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__active_path
Field descriptor (offset) for struct member 'active_path'.
|
static long[] |
__DNA__FIELD__description
Field descriptor (offset) for struct member 'description'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__idname
Field descriptor (offset) for struct member 'idname'.
|
static long[] |
__DNA__FIELD__keyingflag
Field descriptor (offset) for struct member 'keyingflag'.
|
static long[] |
__DNA__FIELD__keyingoverride
Field descriptor (offset) for struct member 'keyingoverride'.
|
static long[] |
__DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__pad
Field descriptor (offset) for struct member 'pad'.
|
static long[] |
__DNA__FIELD__paths
Field descriptor (offset) for struct member 'paths'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static long[] |
__DNA__FIELD__typeinfo
Field descriptor (offset) for struct member 'typeinfo'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct KeyingSet.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
KeyingSet(KeyingSet that) |
|
KeyingSet(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<KeyingSet> |
__io__addressof()
Instantiates a pointer on this instance.
|
int |
getActive_path()
Get method for struct member 'active_path'.
|
CArrayFacade<java.lang.Byte> |
getDescription()
Get method for struct member 'description'.
|
short |
getFlag()
Get method for struct member 'flag'.
|
CArrayFacade<java.lang.Byte> |
getIdname()
Get method for struct member 'idname'.
|
short |
getKeyingflag()
Get method for struct member 'keyingflag'.
|
short |
getKeyingoverride()
Get method for struct member 'keyingoverride'.
|
CArrayFacade<java.lang.Byte> |
getName()
Get method for struct member 'name'.
|
CPointer<KeyingSet> |
getNext()
Get method for struct member 'next'.
|
CArrayFacade<java.lang.Byte> |
getPad()
Get method for struct member 'pad'.
|
ListBase |
getPaths()
Get method for struct member 'paths'.
|
CPointer<KeyingSet> |
getPrev()
Get method for struct member 'prev'.
|
CArrayFacade<java.lang.Byte> |
getTypeinfo()
Get method for struct member 'typeinfo'.
|
void |
setActive_path(int active_path)
Set method for struct member 'active_path'.
|
void |
setDescription(CArrayFacade<java.lang.Byte> description)
Set method for struct member 'description'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setIdname(CArrayFacade<java.lang.Byte> idname)
Set method for struct member 'idname'.
|
void |
setKeyingflag(short keyingflag)
Set method for struct member 'keyingflag'.
|
void |
setKeyingoverride(short keyingoverride)
Set method for struct member 'keyingoverride'.
|
void |
setName(CArrayFacade<java.lang.Byte> name)
Set method for struct member 'name'.
|
void |
setNext(CPointer<KeyingSet> next)
Set method for struct member 'next'.
|
void |
setPad(CArrayFacade<java.lang.Byte> pad)
Set method for struct member 'pad'.
|
void |
setPaths(ListBase paths)
Set method for struct member 'paths'.
|
void |
setPrev(CPointer<KeyingSet> prev)
Set method for struct member 'prev'.
|
void |
setTypeinfo(CArrayFacade<java.lang.Byte> typeinfo)
Set method for struct member 'typeinfo'.
|
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for KeyingSet.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__next); CPointer<CPointer<KeyingSet>> p_next = p.cast(new Class[]{CPointer.class, KeyingSet.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__prev); CPointer<CPointer<KeyingSet>> p_prev = p.cast(new Class[]{CPointer.class, KeyingSet.class});
public static final long[] __DNA__FIELD__paths
(KS_Path
) paths to keyframe to
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__paths); CPointer<ListBase> p_paths = p.cast(new Class[]{ListBase.class});
public static final long[] __DNA__FIELD__idname
unique name (for search, etc.) - MAX_ID_NAME-2
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__idname); CPointer<CArrayFacade<Byte>> p_idname = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__name
user-viewable name for KeyingSet
(for menus, etc.) - MAX_ID_NAME-2
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__name); CPointer<CArrayFacade<Byte>> p_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__description
(RNA_DYN_DESCR_MAX) short help text.
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__description); CPointer<CArrayFacade<Byte>> p_description = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__typeinfo
name of the typeinfo data used for the relative paths - MAX_ID_NAME-2
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__typeinfo); CPointer<CArrayFacade<Byte>> p_typeinfo = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__active_path
index of the active path
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__active_path); CPointer<Integer> p_active_path = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__flag
settings for KeyingSet
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__keyingflag
(eInsertKeyFlags) settings to supply insertkey() with
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__keyingflag); CPointer<Short> p_keyingflag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__keyingoverride
(eInsertKeyFlags) for each flag set, the relevant keyingflag bit overrides the default
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__keyingoverride); CPointer<Short> p_keyingoverride = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__pad
This is how you get a reference on the corresponding field in the struct:
KeyingSet keyingset = ...; CPointer<Object> p = keyingset.__dna__addressof(KeyingSet.__DNA__FIELD__pad); CPointer<CArrayFacade<Byte>> p_pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public KeyingSet(long __address, Block __block, BlockTable __blockTable)
protected KeyingSet(KeyingSet that)
public CPointer<KeyingSet> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<KeyingSet> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<KeyingSet> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<KeyingSet> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public ListBase getPaths() throws java.io.IOException
(KS_Path
) paths to keyframe to
java.io.IOException
__DNA__FIELD__paths
public void setPaths(ListBase paths) throws java.io.IOException
(KS_Path
) paths to keyframe to
java.io.IOException
__DNA__FIELD__paths
public CArrayFacade<java.lang.Byte> getIdname() throws java.io.IOException
unique name (for search, etc.) - MAX_ID_NAME-2
java.io.IOException
__DNA__FIELD__idname
public void setIdname(CArrayFacade<java.lang.Byte> idname) throws java.io.IOException
unique name (for search, etc.) - MAX_ID_NAME-2
java.io.IOException
__DNA__FIELD__idname
public CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
user-viewable name for KeyingSet
(for menus, etc.) - MAX_ID_NAME-2
java.io.IOException
__DNA__FIELD__name
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
user-viewable name for KeyingSet
(for menus, etc.) - MAX_ID_NAME-2
java.io.IOException
__DNA__FIELD__name
public CArrayFacade<java.lang.Byte> getDescription() throws java.io.IOException
(RNA_DYN_DESCR_MAX) short help text.
java.io.IOException
__DNA__FIELD__description
public void setDescription(CArrayFacade<java.lang.Byte> description) throws java.io.IOException
(RNA_DYN_DESCR_MAX) short help text.
java.io.IOException
__DNA__FIELD__description
public CArrayFacade<java.lang.Byte> getTypeinfo() throws java.io.IOException
name of the typeinfo data used for the relative paths - MAX_ID_NAME-2
java.io.IOException
__DNA__FIELD__typeinfo
public void setTypeinfo(CArrayFacade<java.lang.Byte> typeinfo) throws java.io.IOException
name of the typeinfo data used for the relative paths - MAX_ID_NAME-2
java.io.IOException
__DNA__FIELD__typeinfo
public int getActive_path() throws java.io.IOException
index of the active path
java.io.IOException
__DNA__FIELD__active_path
public void setActive_path(int active_path) throws java.io.IOException
index of the active path
java.io.IOException
__DNA__FIELD__active_path
public short getFlag() throws java.io.IOException
settings for KeyingSet
java.io.IOException
__DNA__FIELD__flag
public void setFlag(short flag) throws java.io.IOException
settings for KeyingSet
java.io.IOException
__DNA__FIELD__flag
public short getKeyingflag() throws java.io.IOException
(eInsertKeyFlags) settings to supply insertkey() with
java.io.IOException
__DNA__FIELD__keyingflag
public void setKeyingflag(short keyingflag) throws java.io.IOException
(eInsertKeyFlags) settings to supply insertkey() with
java.io.IOException
__DNA__FIELD__keyingflag
public short getKeyingoverride() throws java.io.IOException
(eInsertKeyFlags) for each flag set, the relevant keyingflag bit overrides the default
java.io.IOException
__DNA__FIELD__keyingoverride
public void setKeyingoverride(short keyingoverride) throws java.io.IOException
(eInsertKeyFlags) for each flag set, the relevant keyingflag bit overrides the default
java.io.IOException
__DNA__FIELD__keyingoverride
public CArrayFacade<java.lang.Byte> getPad() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public void setPad(CArrayFacade<java.lang.Byte> pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad