Generated new code and added initial data handling
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user