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,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class GP_Sculpt_Guide {
[DNAFieldAttribute(0, "char", "use_guide", 1)]
public char use_guide;
[DNAFieldAttribute(1, "char", "use_snapping", 1)]
public char use_snapping;
[DNAFieldAttribute(2, "char", "reference_point", 1)]
public char reference_point;
[DNAFieldAttribute(3, "char", "type", 1)]
public char type;
[DNAFieldAttribute(4, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(5, "float", "angle", 4)]
public float angle;
[DNAFieldAttribute(6, "float", "angle_snap", 4)]
public float angle_snap;
[DNAFieldAttribute(7, "float", "spacing", 4)]
public float spacing;
[DNAFieldAttribute(8, "float", "location[3]", 4)]
public float[] location = new System.Single[3];
[DNAFieldAttribute(9, "Object", "*reference_object", 1160)]
public Object ptr_reference_object;
public GP_Sculpt_Guide(char use_guide, char use_snapping, char reference_point, char type, char[] _pad2, float angle, float angle_snap, float spacing, float[] location, Object ptr_reference_object) {
this.use_guide = use_guide;