Class MappingInfoModifierData


  • public class MappingInfoModifierData
    extends CFacade
    Generated facet for DNA struct type 'MappingInfoModifierData'.

    Class Documentation

    Blender Source Code

    not a real modifier

    • Field Detail

      • __DNA__SDNA_INDEX

        public static final int __DNA__SDNA_INDEX
        This is the sdna index of the struct MappingInfoModifierData.

        It is required when allocating a new block to store data for MappingInfoModifierData.

        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:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__modifier);
         CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
         

        Metadata

        • Field: 'modifier'
        • Signature: 'ModifierData'
        • Actual Size (32bit/64bit): 100/120
      • __DNA__FIELD__texture

        public static final long[] __DNA__FIELD__texture
        Field descriptor (offset) for struct member 'texture'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__texture);
         CPointer<CPointer<Tex>> p_texture = p.cast(new Class[]{CPointer.class, Tex.class});
         

        Metadata

        • Field: 'texture'
        • Signature: 'Tex*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__map_object

        public static final long[] __DNA__FIELD__map_object
        Field descriptor (offset) for struct member 'map_object'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__map_object);
         CPointer<CPointer<BlenderObject>> p_map_object = p.cast(new Class[]{CPointer.class, BlenderObject.class});
         

        Metadata

        • Field: 'map_object'
        • Signature: 'Object*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__map_bone

        public static final long[] __DNA__FIELD__map_bone
        Field descriptor (offset) for struct member 'map_bone'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__map_bone);
         CPointer<CArrayFacade<Byte>> p_map_bone = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: 'map_bone'
        • Signature: 'char[64]'
        • Actual Size (32bit/64bit): 64/64
      • __DNA__FIELD__uvlayer_name

        public static final long[] __DNA__FIELD__uvlayer_name
        Field descriptor (offset) for struct member 'uvlayer_name'.

        Field Documentation

        Blender Source Code

        MAX_CUSTOMDATA_LAYER_NAME.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__uvlayer_name);
         CPointer<CArrayFacade<Byte>> p_uvlayer_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: 'uvlayer_name'
        • Signature: 'char[64]'
        • Actual Size (32bit/64bit): 64/64
      • __DNA__FIELD__uvlayer_tmp

        public static final long[] __DNA__FIELD__uvlayer_tmp
        Field descriptor (offset) for struct member 'uvlayer_tmp'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__uvlayer_tmp);
         CPointer<Integer> p_uvlayer_tmp = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'uvlayer_tmp'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__texmapping

        public static final long[] __DNA__FIELD__texmapping
        Field descriptor (offset) for struct member 'texmapping'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MappingInfoModifierData mappinginfomodifierdata = ...;
         CPointer<Object> p = mappinginfomodifierdata.__dna__addressof(MappingInfoModifierData.__DNA__FIELD__texmapping);
         CPointer<Integer> p_texmapping = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'texmapping'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
    • Constructor Detail

      • MappingInfoModifierData

        public MappingInfoModifierData​(long __address,
                                       Block __block,
                                       BlockTable __blockTable)
    • 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
      • getTexture

        public CPointer<Tex> getTexture()
                                 throws java.io.IOException
        Get method for struct member 'texture'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__texture
      • setTexture

        public void setTexture​(CPointer<Tex> texture)
                        throws java.io.IOException
        Set method for struct member 'texture'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__texture
      • getMap_bone

        public CArrayFacade<java.lang.Byte> getMap_bone()
                                                 throws java.io.IOException
        Get method for struct member 'map_bone'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__map_bone
      • setMap_bone

        public void setMap_bone​(CArrayFacade<java.lang.Byte> map_bone)
                         throws java.io.IOException
        Set method for struct member 'map_bone'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__map_bone
      • getUvlayer_name

        public CArrayFacade<java.lang.Byte> getUvlayer_name()
                                                     throws java.io.IOException
        Get method for struct member 'uvlayer_name'.

        Field Documentation

        Blender Source Code

        MAX_CUSTOMDATA_LAYER_NAME.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__uvlayer_name
      • setUvlayer_name

        public void setUvlayer_name​(CArrayFacade<java.lang.Byte> uvlayer_name)
                             throws java.io.IOException
        Set method for struct member 'uvlayer_name'.

        Field Documentation

        Blender Source Code

        MAX_CUSTOMDATA_LAYER_NAME.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__uvlayer_name
      • getUvlayer_tmp

        public int getUvlayer_tmp()
                           throws java.io.IOException
        Get method for struct member 'uvlayer_tmp'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__uvlayer_tmp
      • setUvlayer_tmp

        public void setUvlayer_tmp​(int uvlayer_tmp)
                            throws java.io.IOException
        Set method for struct member 'uvlayer_tmp'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__uvlayer_tmp
      • getTexmapping

        public int getTexmapping()
                          throws java.io.IOException
        Get method for struct member 'texmapping'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__texmapping
      • setTexmapping

        public void setTexmapping​(int texmapping)
                           throws java.io.IOException
        Set method for struct member 'texmapping'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__texmapping