Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,21 +11,36 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ArrayModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Object", "*start_cap", 1160)]
public Object ptr_start_cap;
[DNAFieldAttribute(2, "Object", "*end_cap", 1160)]
public Object ptr_end_cap;
[DNAFieldAttribute(3, "Object", "*curve_ob", 1160)]
public Object ptr_curve_ob;
[DNAFieldAttribute(4, "Object", "*offset_ob", 1160)]
public Object ptr_offset_ob;
[DNAFieldAttribute(5, "float", "offset[3]", 4)]
public float[] offset = new System.Single[3];
[DNAFieldAttribute(6, "float", "scale[3]", 4)]
public float[] scale = new System.Single[3];
[DNAFieldAttribute(7, "float", "length", 4)]
public float length;
[DNAFieldAttribute(8, "float", "merge_dist", 4)]
public float merge_dist;
[DNAFieldAttribute(9, "int", "fit_type", 4)]
public int fit_type;
[DNAFieldAttribute(10, "int", "offset_type", 4)]
public int offset_type;
[DNAFieldAttribute(11, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(12, "int", "count", 4)]
public int count;
[DNAFieldAttribute(13, "float", "uv_offset[2]", 4)]
public float[] uv_offset = new System.Single[2];
public ArrayModifierData(ModifierData modifier, Object ptr_start_cap, Object ptr_end_cap, Object ptr_curve_ob, Object ptr_offset_ob, float[] offset, float[] scale, float length, float merge_dist, int fit_type, int offset_type, int flags, int count, float[] uv_offset) {
this.modifier = modifier;