public class FMod_Stepped extends CFacade
stepped modifier data
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__end_frame
Field descriptor (offset) for struct member 'end_frame'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__offset
Field descriptor (offset) for struct member 'offset'.
|
static long[] |
__DNA__FIELD__start_frame
Field descriptor (offset) for struct member 'start_frame'.
|
static long[] |
__DNA__FIELD__step_size
Field descriptor (offset) for struct member 'step_size'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct FMod_Stepped.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
FMod_Stepped(FMod_Stepped that) |
|
FMod_Stepped(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<FMod_Stepped> |
__io__addressof()
Instantiates a pointer on this instance.
|
float |
getEnd_frame()
Get method for struct member 'end_frame'.
|
int |
getFlag()
Get method for struct member 'flag'.
|
float |
getOffset()
Get method for struct member 'offset'.
|
float |
getStart_frame()
Get method for struct member 'start_frame'.
|
float |
getStep_size()
Get method for struct member 'step_size'.
|
void |
setEnd_frame(float end_frame)
Set method for struct member 'end_frame'.
|
void |
setFlag(int flag)
Set method for struct member 'flag'.
|
void |
setOffset(float offset)
Set method for struct member 'offset'.
|
void |
setStart_frame(float start_frame)
Set method for struct member 'start_frame'.
|
void |
setStep_size(float step_size)
Set method for struct member 'step_size'.
|
__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 FMod_Stepped.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__step_size
Number of frames each interpolated value should be held
This is how you get a reference on the corresponding field in the struct:
FMod_Stepped fmod_stepped = ...; CPointer<Object> p = fmod_stepped.__dna__addressof(FMod_Stepped.__DNA__FIELD__step_size); CPointer<Float> p_step_size = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__offset
Reference frame number that stepping starts from
This is how you get a reference on the corresponding field in the struct:
FMod_Stepped fmod_stepped = ...; CPointer<Object> p = fmod_stepped.__dna__addressof(FMod_Stepped.__DNA__FIELD__offset); CPointer<Float> p_offset = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__start_frame
start frame of the frame range that modifier works in
This is how you get a reference on the corresponding field in the struct:
FMod_Stepped fmod_stepped = ...; CPointer<Object> p = fmod_stepped.__dna__addressof(FMod_Stepped.__DNA__FIELD__start_frame); CPointer<Float> p_start_frame = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__end_frame
end frame of the frame range that modifier works in
This is how you get a reference on the corresponding field in the struct:
FMod_Stepped fmod_stepped = ...; CPointer<Object> p = fmod_stepped.__dna__addressof(FMod_Stepped.__DNA__FIELD__end_frame); CPointer<Float> p_end_frame = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__flag
various settings
This is how you get a reference on the corresponding field in the struct:
FMod_Stepped fmod_stepped = ...; CPointer<Object> p = fmod_stepped.__dna__addressof(FMod_Stepped.__DNA__FIELD__flag); CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
public FMod_Stepped(long __address, Block __block, BlockTable __blockTable)
protected FMod_Stepped(FMod_Stepped that)
public float getStep_size() throws java.io.IOException
Number of frames each interpolated value should be held
java.io.IOException
__DNA__FIELD__step_size
public void setStep_size(float step_size) throws java.io.IOException
Number of frames each interpolated value should be held
java.io.IOException
__DNA__FIELD__step_size
public float getOffset() throws java.io.IOException
Reference frame number that stepping starts from
java.io.IOException
__DNA__FIELD__offset
public void setOffset(float offset) throws java.io.IOException
Reference frame number that stepping starts from
java.io.IOException
__DNA__FIELD__offset
public float getStart_frame() throws java.io.IOException
start frame of the frame range that modifier works in
java.io.IOException
__DNA__FIELD__start_frame
public void setStart_frame(float start_frame) throws java.io.IOException
start frame of the frame range that modifier works in
java.io.IOException
__DNA__FIELD__start_frame
public float getEnd_frame() throws java.io.IOException
end frame of the frame range that modifier works in
java.io.IOException
__DNA__FIELD__end_frame
public void setEnd_frame(float end_frame) throws java.io.IOException
end frame of the frame range that modifier works in
java.io.IOException
__DNA__FIELD__end_frame
public int getFlag() throws java.io.IOException
various settings
java.io.IOException
__DNA__FIELD__flag
public void setFlag(int flag) throws java.io.IOException
various settings
java.io.IOException
__DNA__FIELD__flag
public CPointer<FMod_Stepped> __io__addressof()