Package org.blender.dna
Class FMod_Python
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.FMod_Python
-
public class FMod_Python extends CFacade
Generated facet for DNA struct type 'FMod_Python'.Class Documentation
Blender Source Code
Python-script modifier data
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__prop
Field descriptor (offset) for struct member 'prop'.static long[]
__DNA__FIELD__script
Field descriptor (offset) for struct member 'script'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct FMod_Python.-
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 FMod_Python(long __address, Block __block, BlockTable __blockTable)
protected
FMod_Python(FMod_Python that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<FMod_Python>
__io__addressof()
Instantiates a pointer on this instance.CPointer<IDProperty>
getProp()
Get method for struct member 'prop'.CPointer<Text>
getScript()
Get method for struct member 'script'.void
setProp(CPointer<IDProperty> prop)
Set method for struct member 'prop'.void
setScript(CPointer<Text> script)
Set method for struct member 'script'.-
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 FMod_Python.It is required when allocating a new block to store data for FMod_Python.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__script
public static final long[] __DNA__FIELD__script
Field descriptor (offset) for struct member 'script'.Field Documentation
Blender Source Code
Text
buffer containing script to execute.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FMod_Python fmod_python = ...; CPointer<Object> p = fmod_python.__dna__addressof(FMod_Python.__DNA__FIELD__script); CPointer<CPointer<Text>> p_script = p.cast(new Class[]{CPointer.class, Text.class});
Metadata
- Field: 'script'
- Signature: 'Text*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__prop
public static final long[] __DNA__FIELD__prop
Field descriptor (offset) for struct member 'prop'.Field Documentation
Blender Source Code
ID-properties to provide 'custom' settings.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FMod_Python fmod_python = ...; CPointer<Object> p = fmod_python.__dna__addressof(FMod_Python.__DNA__FIELD__prop); CPointer<CPointer<IDProperty>> p_prop = p.cast(new Class[]{CPointer.class, IDProperty.class});
Metadata
- Field: 'prop'
- Signature: 'IDProperty*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
FMod_Python
public FMod_Python(long __address, Block __block, BlockTable __blockTable)
-
FMod_Python
protected FMod_Python(FMod_Python that)
-
-
Method Detail
-
getScript
public CPointer<Text> getScript() throws java.io.IOException
Get method for struct member 'script'.Field Documentation
Blender Source Code
Text
buffer containing script to execute.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__script
-
setScript
public void setScript(CPointer<Text> script) throws java.io.IOException
Set method for struct member 'script'.Field Documentation
Blender Source Code
Text
buffer containing script to execute.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__script
-
getProp
public CPointer<IDProperty> getProp() throws java.io.IOException
Get method for struct member 'prop'.Field Documentation
Blender Source Code
ID-properties to provide 'custom' settings.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prop
-
setProp
public void setProp(CPointer<IDProperty> prop) throws java.io.IOException
Set method for struct member 'prop'.Field Documentation
Blender Source Code
ID-properties to provide 'custom' settings.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prop
-
__io__addressof
public CPointer<FMod_Python> __io__addressof()
Instantiates a pointer on this instance.
-
-