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 bActionModifier {
[DNAFieldAttribute(0, "bActionModifier", "*next", 72)]
public bActionModifier ptr_next;
[DNAFieldAttribute(1, "bActionModifier", "*prev", 72)]
public bActionModifier ptr_prev;
[DNAFieldAttribute(2, "short", "type", 2)]
public short type;
[DNAFieldAttribute(3, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(4, "char", "channel[32]", 1)]
public char[] channel = new System.Char[32];
[DNAFieldAttribute(5, "float", "noisesize", 4)]
public float noisesize;
[DNAFieldAttribute(6, "float", "turbul", 4)]
public float turbul;
[DNAFieldAttribute(7, "short", "channels", 2)]
public short channels;
[DNAFieldAttribute(8, "short", "no_rot_axis", 2)]
public short no_rot_axis;
[DNAFieldAttribute(9, "Object", "*ob", 1160)]
public Object ptr_ob;
public bActionModifier(bActionModifier ptr_next, bActionModifier ptr_prev, short type, short flag, char[] channel, float noisesize, float turbul, short channels, short no_rot_axis, Object ptr_ob) {
this.ptr_next = ptr_next;