Files
BlenderSharp/BlendFile/DNA/SurfaceModifierData_Runtime.cs
2025-02-19 17:07:50 +01:00

40 lines
1.4 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 {
using BlendFile;
[DNAClassAttribute(470, "SurfaceModifierData_Runtime")]
public class SurfaceModifierData_Runtime {
[DNAFieldAttribute(2, "Mesh", "*mesh", "Mesh", 4, true)]
public Mesh ptr_mesh;
[DNAFieldAttribute(3, "BVHTreeFromMesh", "*bvhtree", "BVHTreeFromMesh", 4, true)]
public BVHTreeFromMesh ptr_bvhtree;
[DNAFieldAttribute(4, "int", "cfra_prev", "int", 4, false)]
public int cfra_prev;
[DNAFieldAttribute(5, "int", "verts_num", "int", 4, false)]
public int verts_num;
public SurfaceModifierData_Runtime() {
this.ptr_mesh = default;
this.ptr_bvhtree = default;
this.cfra_prev = default;
this.verts_num = default;
}
public SurfaceModifierData_Runtime(Mesh ptr_mesh, BVHTreeFromMesh ptr_bvhtree, int cfra_prev, int verts_num) {
this.ptr_mesh = ptr_mesh;
this.ptr_bvhtree = ptr_bvhtree;
this.cfra_prev = cfra_prev;
this.verts_num = verts_num;
}
}
}