Class MovieClipUser


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

    Class Documentation

    • Field Detail

      • __DNA__SDNA_INDEX

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

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

        See Also:
        StructDNA, BlockTable, Constant Field Values
      • __DNA__FIELD__framenr

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

        Field Documentation

        Blender Source Code

        Current frame number.

        Pointer Arithmetics

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

         MovieClipUser movieclipuser = ...;
         CPointer<Object> p = movieclipuser.__dna__addressof(MovieClipUser.__DNA__FIELD__framenr);
         CPointer<Integer> p_framenr = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'framenr'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__render_size

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

        Field Documentation

        Blender Source Code

        Proxy render size.

        Pointer Arithmetics

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

         MovieClipUser movieclipuser = ...;
         CPointer<Object> p = movieclipuser.__dna__addressof(MovieClipUser.__DNA__FIELD__render_size);
         CPointer<Short> p_render_size = p.cast(new Class[]{Short.class});
         

        Metadata

        • Field: 'render_size'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD__render_flag

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

        Pointer Arithmetics

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

         MovieClipUser movieclipuser = ...;
         CPointer<Object> p = movieclipuser.__dna__addressof(MovieClipUser.__DNA__FIELD__render_flag);
         CPointer<Short> p_render_flag = p.cast(new Class[]{Short.class});
         

        Metadata

        • Field: 'render_flag'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
    • Constructor Detail

      • MovieClipUser

        public MovieClipUser​(long __address,
                             Block __block,
                             BlockTable __blockTable)
    • Method Detail

      • getFramenr

        public int getFramenr()
                       throws java.io.IOException
        Get method for struct member 'framenr'.

        Field Documentation

        Blender Source Code

        Current frame number.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__framenr
      • setFramenr

        public void setFramenr​(int framenr)
                        throws java.io.IOException
        Set method for struct member 'framenr'.

        Field Documentation

        Blender Source Code

        Current frame number.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__framenr
      • getRender_size

        public short getRender_size()
                             throws java.io.IOException
        Get method for struct member 'render_size'.

        Field Documentation

        Blender Source Code

        Proxy render size.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__render_size
      • setRender_size

        public void setRender_size​(short render_size)
                            throws java.io.IOException
        Set method for struct member 'render_size'.

        Field Documentation

        Blender Source Code

        Proxy render size.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__render_size
      • getRender_flag

        public short getRender_flag()
                             throws java.io.IOException
        Get method for struct member 'render_flag'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__render_flag
      • setRender_flag

        public void setRender_flag​(short render_flag)
                            throws java.io.IOException
        Set method for struct member 'render_flag'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__render_flag
      • __io__addressof

        public CPointer<MovieClipUser> __io__addressof()
        Instantiates a pointer on this instance.