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,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct LineStyleGeometryModifier_Blueprint {
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", 96)]
public LineStyleModifier modifier;
[DNAFieldAttribute(1, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(2, "int", "rounds", 4)]
public int rounds;
[DNAFieldAttribute(3, "float", "backbone_length", 4)]
public float backbone_length;
[DNAFieldAttribute(4, "int", "random_radius", 4)]
public int random_radius;
[DNAFieldAttribute(5, "int", "random_center", 4)]
public int random_center;
[DNAFieldAttribute(6, "int", "random_backbone", 4)]
public int random_backbone;
public LineStyleGeometryModifier_Blueprint(LineStyleModifier modifier, int flags, int rounds, float backbone_length, int random_radius, int random_center, int random_backbone) {
this.modifier = modifier;