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___pad
Field descriptor (offset) for struct member '_pad'.
|
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__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.
|
CArrayFacade<java.lang.Byte> |
get_pad()
Get method for struct member '_pad'.
|
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'.
|
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 |
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.
|
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 |
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> get_pad() throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad