Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,41 +15,41 @@ namespace BlendFile.DNA {
[DNAClassAttribute(550, "GreasePencilShrinkwrapModifierData", 336)]
public class GreasePencilShrinkwrapModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", "GreasePencilModifierInfluenceData", 168, false, 120)]
[DNAFieldAttribute(168, "GreasePencilModifierInfluenceData", 1, "influence", "GreasePencilModifierInfluenceData", false, 120)]
public GreasePencilModifierInfluenceData influence;
[DNAFieldAttribute(2, "Object", "*target", "Object", 8, true, 288)]
public Object ptr_target;
[DNAFieldAttribute(3, "Object", "*aux_target", "Object", 8, true, 296)]
public Object ptr_aux_target;
[DNAFieldAttribute(4, "float", "keep_dist", "float", 4, false, 304)]
[DNAFieldAttribute(8, "Object", 2, "*target", "Object", true, 288)]
public Object target;
[DNAFieldAttribute(8, "Object", 3, "*aux_target", "Object", true, 296)]
public Object aux_target;
[DNAFieldAttribute(4, "float", 4, "keep_dist", "float", false, 304)]
public float keep_dist;
[DNAFieldAttribute(5, "short", "shrink_type", "short", 2, false, 308)]
[DNAFieldAttribute(2, "short", 5, "shrink_type", "short", false, 308)]
public short shrink_type;
[DNAFieldAttribute(6, "char", "shrink_opts", "char", 1, false, 310)]
[DNAFieldAttribute(1, "char", 6, "shrink_opts", "char", false, 310)]
public char shrink_opts;
[DNAFieldAttribute(7, "char", "shrink_mode", "char", 1, false, 311)]
[DNAFieldAttribute(1, "char", 7, "shrink_mode", "char", false, 311)]
public char shrink_mode;
[DNAFieldAttribute(8, "float", "proj_limit", "float", 4, false, 312)]
[DNAFieldAttribute(4, "float", 8, "proj_limit", "float", false, 312)]
public float proj_limit;
[DNAFieldAttribute(9, "char", "proj_axis", "char", 1, false, 316)]
[DNAFieldAttribute(1, "char", 9, "proj_axis", "char", false, 316)]
public char proj_axis;
[DNAFieldAttribute(10, "char", "subsurf_levels", "char", 1, false, 317)]
[DNAFieldAttribute(1, "char", 10, "subsurf_levels", "char", false, 317)]
public char subsurf_levels;
[DNAFieldAttribute(11, "char", "_pad[2]", "System.Char[]", 2, false, 318)]
[DNAFieldAttribute(2, "char", 11, "_pad[2]", "System.Char[]", false, 318)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(12, "float", "smooth_factor", "float", 4, false, 320)]
[DNAFieldAttribute(4, "float", 12, "smooth_factor", "float", false, 320)]
public float smooth_factor;
[DNAFieldAttribute(13, "int", "smooth_step", "int", 4, false, 324)]
[DNAFieldAttribute(4, "int", 13, "smooth_step", "int", false, 324)]
public int smooth_step;
[DNAFieldAttribute(14, "ShrinkwrapTreeData", "*cache_data", "ShrinkwrapTreeData", 8, true, 328)]
public ShrinkwrapTreeData ptr_cache_data;
[DNAFieldAttribute(8, "ShrinkwrapTreeData", 14, "*cache_data", "ShrinkwrapTreeData", true, 328)]
public ShrinkwrapTreeData cache_data;
public GreasePencilShrinkwrapModifierData() {
this.modifier = default;
this.influence = default;
this.ptr_target = default;
this.ptr_aux_target = default;
this.target = default;
this.aux_target = default;
this.keep_dist = default;
this.shrink_type = default;
this.shrink_opts = default;
@@ -60,13 +60,13 @@ namespace BlendFile.DNA {
this._pad = default;
this.smooth_factor = default;
this.smooth_step = default;
this.ptr_cache_data = default;
this.cache_data = default;
}
public GreasePencilShrinkwrapModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object ptr_target, Object ptr_aux_target, float keep_dist, short shrink_type, char shrink_opts, char shrink_mode, float proj_limit, char proj_axis, char subsurf_levels, char[] _pad, float smooth_factor, int smooth_step, ShrinkwrapTreeData ptr_cache_data) {
public GreasePencilShrinkwrapModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object target, Object aux_target, float keep_dist, short shrink_type, char shrink_opts, char shrink_mode, float proj_limit, char proj_axis, char subsurf_levels, char[] _pad, float smooth_factor, int smooth_step, ShrinkwrapTreeData cache_data) {
this.modifier = modifier;
this.influence = influence;
this.ptr_target = ptr_target;
this.ptr_aux_target = ptr_aux_target;
this.target = target;
this.aux_target = aux_target;
this.keep_dist = keep_dist;
this.shrink_type = shrink_type;
this.shrink_opts = shrink_opts;
@@ -77,7 +77,7 @@ namespace BlendFile.DNA {
this._pad = _pad;
this.smooth_factor = smooth_factor;
this.smooth_step = smooth_step;
this.ptr_cache_data = ptr_cache_data;
this.cache_data = cache_data;
}
}
}