INNER CODE UNIT · C#

Mesh

endlesstravel/Love2dCS · convert_code_tool/bb.cs:1

public class Mesh: LoveObject
{
    /// <summary>
    /// disable construct
    /// </summary>
    protected Mesh() { }
    public void SetVertexAttribute(int vertIndex, int attrIndex, byte[] dataPtr, int dataLen)
    {
        Love2dDll.wrap_love_dll_type_Mesh_setVertexAttribute(p, vertIndex, attrIndex, dataPtr, dataLen);
    }

    // TODO: finishe function wrap_love_dll_type_Mesh_getVertexAttribute
    public void SetVertices(int vertOffset, byte[] inputData, int dataSize)
    {
        Love2dDll.wrap_love_dll_type_Mesh_setVertices(p, vertOffset, inputData, dataSize);
    }

    // TODO: finishe function wrap_love_dll_type_Mesh_getVertex

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…