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 BoidState {
[DNAFieldAttribute(0, "BoidState", "*next", 128)]
public BoidState ptr_next;
[DNAFieldAttribute(1, "BoidState", "*prev", 128)]
public BoidState ptr_prev;
[DNAFieldAttribute(2, "ListBase", "rules", 16)]
public ListBase rules;
[DNAFieldAttribute(3, "ListBase", "conditions", 16)]
public ListBase conditions;
[DNAFieldAttribute(4, "ListBase", "actions", 16)]
public ListBase actions;
[DNAFieldAttribute(5, "char", "name[32]", 1)]
public char[] name = new System.Char[32];
[DNAFieldAttribute(6, "int", "id", 4)]
public int id;
[DNAFieldAttribute(7, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(8, "int", "ruleset_type", 4)]
public int ruleset_type;
[DNAFieldAttribute(9, "float", "rule_fuzziness", 4)]
public float rule_fuzziness;
[DNAFieldAttribute(10, "int", "signal_id", 4)]
public int signal_id;
[DNAFieldAttribute(11, "int", "channels", 4)]
public int channels;
[DNAFieldAttribute(12, "float", "volume", 4)]
public float volume;
[DNAFieldAttribute(13, "float", "falloff", 4)]
public float falloff;
public BoidState(BoidState ptr_next, BoidState ptr_prev, ListBase rules, ListBase conditions, ListBase actions, char[] name, int id, int flag, int ruleset_type, float rule_fuzziness, int signal_id, int channels, float volume, float falloff) {
this.ptr_next = ptr_next;