40 lines
1.4 KiB
C#
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", 24)]
|
|
public class SurfaceModifierData_Runtime {
|
|
[DNAFieldAttribute(8, "Mesh", 2, "*mesh", "Mesh", true, 0)]
|
|
public Mesh mesh;
|
|
[DNAFieldAttribute(8, "BVHTreeFromMesh", 3, "*bvhtree", "BVHTreeFromMesh", true, 8)]
|
|
public BVHTreeFromMesh bvhtree;
|
|
[DNAFieldAttribute(4, "int", 4, "cfra_prev", "int", false, 16)]
|
|
public int cfra_prev;
|
|
[DNAFieldAttribute(4, "int", 5, "verts_num", "int", false, 20)]
|
|
public int verts_num;
|
|
public SurfaceModifierData_Runtime() {
|
|
this.mesh = default;
|
|
this.bvhtree = default;
|
|
this.cfra_prev = default;
|
|
this.verts_num = default;
|
|
}
|
|
public SurfaceModifierData_Runtime(Mesh mesh, BVHTreeFromMesh bvhtree, int cfra_prev, int verts_num) {
|
|
this.mesh = mesh;
|
|
this.bvhtree = bvhtree;
|
|
this.cfra_prev = cfra_prev;
|
|
this.verts_num = verts_num;
|
|
}
|
|
}
|
|
}
|