Files
BlenderSharp/BlendFile/DNA/Curves.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

46 lines
1.7 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
public class Curves {
public ID id;
public AnimData ptr_adt;
public CurvesGeometry geometry;
public int flag;
public int attributes_active_index;
public Material ptr_ptr_mat;
public short totcol;
public char symmetry;
public char selection_domain;
public char[] _pad = new System.Char[4];
public Object ptr_surface;
public char ptr_surface_uv_map;
public object ptr_batch_cache;
public Curves(ID id, AnimData ptr_adt, CurvesGeometry geometry, int flag, int attributes_active_index, Material ptr_ptr_mat, short totcol, char symmetry, char selection_domain, char[] _pad, Object ptr_surface, char ptr_surface_uv_map, object ptr_batch_cache) {
this.id = id;
this.ptr_adt = ptr_adt;
this.geometry = geometry;
this.flag = flag;
this.attributes_active_index = attributes_active_index;
this.ptr_ptr_mat = ptr_ptr_mat;
this.totcol = totcol;
this.symmetry = symmetry;
this.selection_domain = selection_domain;
this._pad = _pad;
this.ptr_surface = ptr_surface;
this.ptr_surface_uv_map = ptr_surface_uv_map;
this.ptr_batch_cache = ptr_batch_cache;
}
}
}