Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public float volume;
[DNAFieldAttribute(13, "float", "falloff", 4)]
public float falloff;
public BoidState() {
this.ptr_next = default;
this.ptr_prev = default;
this.rules = default;
this.conditions = default;
this.actions = default;
this.name = default;
this.id = default;
this.flag = default;
this.ruleset_type = default;
this.rule_fuzziness = default;
this.signal_id = default;
this.channels = default;
this.volume = default;
this.falloff = default;
}
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;
this.ptr_prev = ptr_prev;