public class ParticleSystemModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__dm
Field descriptor (offset) for struct member 'dm'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.
|
static long[] |
__DNA__FIELD__pad
Field descriptor (offset) for struct member 'pad'.
|
static long[] |
__DNA__FIELD__psys
Field descriptor (offset) for struct member 'psys'.
|
static long[] |
__DNA__FIELD__totdmedge
Field descriptor (offset) for struct member 'totdmedge'.
|
static long[] |
__DNA__FIELD__totdmface
Field descriptor (offset) for struct member 'totdmface'.
|
static long[] |
__DNA__FIELD__totdmvert
Field descriptor (offset) for struct member 'totdmvert'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct ParticleSystemModifierData.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
ParticleSystemModifierData(long __address,
Block __block,
BlockTable __blockTable) |
protected |
ParticleSystemModifierData(ParticleSystemModifierData that) |
Modifier and Type | Method and Description |
---|---|
CPointer<ParticleSystemModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<java.lang.Object> |
getDm()
Get method for struct member 'dm'.
|
short |
getFlag()
Get method for struct member 'flag'.
|
ModifierData |
getModifier()
Get method for struct member 'modifier'.
|
short |
getPad()
Get method for struct member 'pad'.
|
CPointer<ParticleSystem> |
getPsys()
Get method for struct member 'psys'.
|
int |
getTotdmedge()
Get method for struct member 'totdmedge'.
|
int |
getTotdmface()
Get method for struct member 'totdmface'.
|
int |
getTotdmvert()
Get method for struct member 'totdmvert'.
|
void |
setDm(CPointer<java.lang.Object> dm)
Set method for struct member 'dm'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.
|
void |
setPad(short pad)
Set method for struct member 'pad'.
|
void |
setPsys(CPointer<ParticleSystem> psys)
Set method for struct member 'psys'.
|
void |
setTotdmedge(int totdmedge)
Set method for struct member 'totdmedge'.
|
void |
setTotdmface(int totdmface)
Set method for struct member 'totdmface'.
|
void |
setTotdmvert(int totdmvert)
Set method for struct member 'totdmvert'.
|
__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 ParticleSystemModifierData.
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:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
public static final long[] __DNA__FIELD__psys
This is how you get a reference on the corresponding field in the struct:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__psys); CPointer<CPointer<ParticleSystem>> p_psys = p.cast(new Class[]{CPointer.class, ParticleSystem.class});
public static final long[] __DNA__FIELD__dm
This is how you get a reference on the corresponding field in the struct:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__dm); CPointer<CPointer<Object>> p_dm = p.cast(new Class[]{CPointer.class, Object.class});
public static final long[] __DNA__FIELD__totdmvert
This is how you get a reference on the corresponding field in the struct:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__totdmvert); CPointer<Integer> p_totdmvert = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__totdmedge
This is how you get a reference on the corresponding field in the struct:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__totdmedge); CPointer<Integer> p_totdmedge = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__totdmface
This is how you get a reference on the corresponding field in the struct:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__totdmface); CPointer<Integer> p_totdmface = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__flag
This is how you get a reference on the corresponding field in the struct:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__flag); CPointer<Short> p_flag = 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:
ParticleSystemModifierData particlesystemmodifierdata = ...; CPointer<Object> p = particlesystemmodifierdata.__dna__addressof(ParticleSystemModifierData.__DNA__FIELD__pad); CPointer<Short> p_pad = p.cast(new Class[]{Short.class});
public ParticleSystemModifierData(long __address, Block __block, BlockTable __blockTable)
protected ParticleSystemModifierData(ParticleSystemModifierData 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<ParticleSystem> getPsys() throws java.io.IOException
java.io.IOException
__DNA__FIELD__psys
public void setPsys(CPointer<ParticleSystem> psys) throws java.io.IOException
java.io.IOException
__DNA__FIELD__psys
public CPointer<java.lang.Object> getDm() throws java.io.IOException
java.io.IOException
__DNA__FIELD__dm
public void setDm(CPointer<java.lang.Object> dm) throws java.io.IOException
java.io.IOException
__DNA__FIELD__dm
public int getTotdmvert() throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdmvert
public void setTotdmvert(int totdmvert) throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdmvert
public int getTotdmedge() throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdmedge
public void setTotdmedge(int totdmedge) throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdmedge
public int getTotdmface() throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdmface
public void setTotdmface(int totdmface) throws java.io.IOException
java.io.IOException
__DNA__FIELD__totdmface
public short getFlag() throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public void setFlag(short flag) throws java.io.IOException
java.io.IOException
__DNA__FIELD__flag
public short getPad() throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public void setPad(short pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD__pad
public CPointer<ParticleSystemModifierData> __io__addressof()