public class SmokeModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__coll
Field descriptor (offset) for struct member 'coll'.
|
static long[] |
__DNA__FIELD__domain
Field descriptor (offset) for struct member 'domain'.
|
static long[] |
__DNA__FIELD__flow
Field descriptor (offset) for struct member 'flow'.
|
static long[] |
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.
|
static long[] |
__DNA__FIELD__time
Field descriptor (offset) for struct member 'time'.
|
static long[] |
__DNA__FIELD__type
Field descriptor (offset) for struct member 'type'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct SmokeModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
SmokeModifierData(long __address,
Block __block,
BlockTable __blockTable) |
protected |
SmokeModifierData(SmokeModifierData that) |
Modifier and Type | Method and Description |
---|---|
CPointer<SmokeModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<SmokeCollSettings> |
getColl()
Get method for struct member 'coll'.
|
CPointer<SmokeDomainSettings> |
getDomain()
Get method for struct member 'domain'.
|
CPointer<SmokeFlowSettings> |
getFlow()
Get method for struct member 'flow'.
|
ModifierData |
getModifier()
Get method for struct member 'modifier'.
|
float |
getTime()
Get method for struct member 'time'.
|
int |
getType()
Get method for struct member 'type'.
|
void |
setColl(CPointer<SmokeCollSettings> coll)
Set method for struct member 'coll'.
|
void |
setDomain(CPointer<SmokeDomainSettings> domain)
Set method for struct member 'domain'.
|
void |
setFlow(CPointer<SmokeFlowSettings> flow)
Set method for struct member 'flow'.
|
void |
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.
|
void |
setTime(float time)
Set method for struct member 'time'.
|
void |
setType(int type)
Set method for struct member 'type'.
|
__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 SmokeModifierData.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__modifier
This is how you get a reference on the corresponding field in the struct:
SmokeModifierData smokemodifierdata = ...; CPointer<Object> p = smokemodifierdata.__dna__addressof(SmokeModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__domain
This is how you get a reference on the corresponding field in the struct:
SmokeModifierData smokemodifierdata = ...; CPointer<Object> p = smokemodifierdata.__dna__addressof(SmokeModifierData.__DNA__FIELD__domain); CPointer<CPointer<SmokeDomainSettings>> p_domain = p.cast(new Class[]{CPointer.class, SmokeDomainSettings.class});
public static final long[] __DNA__FIELD__flow
inflow, outflow, smoke objects
This is how you get a reference on the corresponding field in the struct:
SmokeModifierData smokemodifierdata = ...; CPointer<Object> p = smokemodifierdata.__dna__addressof(SmokeModifierData.__DNA__FIELD__flow); CPointer<CPointer<SmokeFlowSettings>> p_flow = p.cast(new Class[]{CPointer.class, SmokeFlowSettings.class});
public static final long[] __DNA__FIELD__coll
collision objects
This is how you get a reference on the corresponding field in the struct:
SmokeModifierData smokemodifierdata = ...; CPointer<Object> p = smokemodifierdata.__dna__addressof(SmokeModifierData.__DNA__FIELD__coll); CPointer<CPointer<SmokeCollSettings>> p_coll = p.cast(new Class[]{CPointer.class, SmokeCollSettings.class});
public static final long[] __DNA__FIELD__time
This is how you get a reference on the corresponding field in the struct:
SmokeModifierData smokemodifierdata = ...; CPointer<Object> p = smokemodifierdata.__dna__addressof(SmokeModifierData.__DNA__FIELD__time); CPointer<Float> p_time = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__type
domain, inflow, outflow, ...
This is how you get a reference on the corresponding field in the struct:
SmokeModifierData smokemodifierdata = ...; CPointer<Object> p = smokemodifierdata.__dna__addressof(SmokeModifierData.__DNA__FIELD__type); CPointer<Integer> p_type = p.cast(new Class[]{Integer.class});
public SmokeModifierData(long __address, Block __block, BlockTable __blockTable)
protected SmokeModifierData(SmokeModifierData that)
public ModifierData getModifier() throws java.io.IOException
java.io.IOException
__DNA__FIELD__modifier
public void setModifier(ModifierData modifier) throws java.io.IOException
java.io.IOException
__DNA__FIELD__modifier
public CPointer<SmokeDomainSettings> getDomain() throws java.io.IOException
java.io.IOException
__DNA__FIELD__domain
public void setDomain(CPointer<SmokeDomainSettings> domain) throws java.io.IOException
java.io.IOException
__DNA__FIELD__domain
public CPointer<SmokeFlowSettings> getFlow() throws java.io.IOException
inflow, outflow, smoke objects
java.io.IOException
__DNA__FIELD__flow
public void setFlow(CPointer<SmokeFlowSettings> flow) throws java.io.IOException
inflow, outflow, smoke objects
java.io.IOException
__DNA__FIELD__flow
public CPointer<SmokeCollSettings> getColl() throws java.io.IOException
collision objects
java.io.IOException
__DNA__FIELD__coll
public void setColl(CPointer<SmokeCollSettings> coll) throws java.io.IOException
collision objects
java.io.IOException
__DNA__FIELD__coll
public float getTime() throws java.io.IOException
java.io.IOException
__DNA__FIELD__time
public void setTime(float time) throws java.io.IOException
java.io.IOException
__DNA__FIELD__time
public int getType() throws java.io.IOException
domain, inflow, outflow, ...
java.io.IOException
__DNA__FIELD__type
public void setType(int type) throws java.io.IOException
domain, inflow, outflow, ...
java.io.IOException
__DNA__FIELD__type
public CPointer<SmokeModifierData> __io__addressof()