Class NodesModifierData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.NodesModifierData
-
public class NodesModifierData extends CFacade
Generated facet for DNA struct type 'NodesModifierData'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.static long[]
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.static long[]
__DNA__FIELD__node_group
Field descriptor (offset) for struct member 'node_group'.static long[]
__DNA__FIELD__runtime_eval_log
Field descriptor (offset) for struct member 'runtime_eval_log'.static long[]
__DNA__FIELD__settings
Field descriptor (offset) for struct member 'settings'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct NodesModifierData.-
Fields inherited from class org.cakelab.blender.nio.CFacade
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
-
-
Constructor Summary
Constructors Modifier Constructor Description NodesModifierData(long __address, Block __block, BlockTable __blockTable)
protected
NodesModifierData(NodesModifierData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<NodesModifierData>
__io__addressof()
Instantiates a pointer on this instance.CPointer<java.lang.Object>
get_pad1()
Get method for struct member '_pad1'.ModifierData
getModifier()
Get method for struct member 'modifier'.CPointer<bNodeTree>
getNode_group()
Get method for struct member 'node_group'.CPointer<java.lang.Object>
getRuntime_eval_log()
Get method for struct member 'runtime_eval_log'.NodesModifierSettings
getSettings()
Get method for struct member 'settings'.void
set_pad1(CPointer<java.lang.Object> _pad1)
Set method for struct member '_pad1'.void
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.void
setNode_group(CPointer<bNodeTree> node_group)
Set method for struct member 'node_group'.void
setRuntime_eval_log(CPointer<java.lang.Object> runtime_eval_log)
Set method for struct member 'runtime_eval_log'.void
setSettings(NodesModifierSettings settings)
Set method for struct member 'settings'.-
Methods inherited from class org.cakelab.blender.nio.CFacade
__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, equals, hashCode
-
-
-
-
Field Detail
-
__DNA__SDNA_INDEX
public static final int __DNA__SDNA_INDEX
This is the sdna index of the struct NodesModifierData.It is required when allocating a new block to store data for NodesModifierData.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__modifier
public static final long[] __DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodesModifierData nodesmodifierdata = ...; CPointer<Object> p = nodesmodifierdata.__dna__addressof(NodesModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
Metadata
- Field: 'modifier'
- Signature: 'ModifierData'
- Actual Size (32bit/64bit): 104/120
-
__DNA__FIELD__node_group
public static final long[] __DNA__FIELD__node_group
Field descriptor (offset) for struct member 'node_group'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodesModifierData nodesmodifierdata = ...; CPointer<Object> p = nodesmodifierdata.__dna__addressof(NodesModifierData.__DNA__FIELD__node_group); CPointer<CPointer<bNodeTree>> p_node_group = p.cast(new Class[]{CPointer.class, bNodeTree.class});
Metadata
- Field: 'node_group'
- Signature: 'bNodeTree*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__settings
public static final long[] __DNA__FIELD__settings
Field descriptor (offset) for struct member 'settings'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodesModifierData nodesmodifierdata = ...; CPointer<Object> p = nodesmodifierdata.__dna__addressof(NodesModifierData.__DNA__FIELD__settings); CPointer<NodesModifierSettings> p_settings = p.cast(new Class[]{NodesModifierSettings.class});
Metadata
- Field: 'settings'
- Signature: 'NodesModifierSettings'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__runtime_eval_log
public static final long[] __DNA__FIELD__runtime_eval_log
Field descriptor (offset) for struct member 'runtime_eval_log'.Field Documentation
Blender Source Code
Contains logged information from the last evaluation. This can be used to help the user to debug a node tree.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodesModifierData nodesmodifierdata = ...; CPointer<Object> p = nodesmodifierdata.__dna__addressof(NodesModifierData.__DNA__FIELD__runtime_eval_log); CPointer<CPointer<Object>> p_runtime_eval_log = p.cast(new Class[]{CPointer.class, Object.class});
Metadata
- Field: 'runtime_eval_log'
- Signature: 'void*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD___pad1
public static final long[] __DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
NodesModifierData nodesmodifierdata = ...; CPointer<Object> p = nodesmodifierdata.__dna__addressof(NodesModifierData.__DNA__FIELD___pad1); CPointer<CPointer<Object>> p__pad1 = p.cast(new Class[]{CPointer.class, Object.class});
Metadata
- Field: '_pad1'
- Signature: 'void*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
NodesModifierData
public NodesModifierData(long __address, Block __block, BlockTable __blockTable)
-
NodesModifierData
protected NodesModifierData(NodesModifierData that)
-
-
Method Detail
-
getModifier
public ModifierData getModifier() throws java.io.IOException
Get method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
setModifier
public void setModifier(ModifierData modifier) throws java.io.IOException
Set method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
getNode_group
public CPointer<bNodeTree> getNode_group() throws java.io.IOException
Get method for struct member 'node_group'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__node_group
-
setNode_group
public void setNode_group(CPointer<bNodeTree> node_group) throws java.io.IOException
Set method for struct member 'node_group'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__node_group
-
getSettings
public NodesModifierSettings getSettings() throws java.io.IOException
Get method for struct member 'settings'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__settings
-
setSettings
public void setSettings(NodesModifierSettings settings) throws java.io.IOException
Set method for struct member 'settings'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__settings
-
getRuntime_eval_log
public CPointer<java.lang.Object> getRuntime_eval_log() throws java.io.IOException
Get method for struct member 'runtime_eval_log'.Field Documentation
Blender Source Code
Contains logged information from the last evaluation. This can be used to help the user to debug a node tree.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__runtime_eval_log
-
setRuntime_eval_log
public void setRuntime_eval_log(CPointer<java.lang.Object> runtime_eval_log) throws java.io.IOException
Set method for struct member 'runtime_eval_log'.Field Documentation
Blender Source Code
Contains logged information from the last evaluation. This can be used to help the user to debug a node tree.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__runtime_eval_log
-
get_pad1
public CPointer<java.lang.Object> get_pad1() throws java.io.IOException
Get method for struct member '_pad1'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad1
-
set_pad1
public void set_pad1(CPointer<java.lang.Object> _pad1) throws java.io.IOException
Set method for struct member '_pad1'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad1
-
__io__addressof
public CPointer<NodesModifierData> __io__addressof()
Instantiates a pointer on this instance.
-
-