Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class BoidState {
public BoidState ptr_next;
public BoidState ptr_prev;
public ListBase rules;
public ListBase conditions;
public ListBase actions;
public char[] name = new System.Char[32];
public int id;
public int flag;
public int ruleset_type;
public float rule_fuzziness;
public int signal_id;
public int channels;
public float volume;
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;
this.ptr_prev = ptr_prev;
this.rules = rules;
this.conditions = conditions;
this.actions = actions;
this.name = name;
this.id = id;
this.flag = flag;
this.ruleset_type = ruleset_type;
this.rule_fuzziness = rule_fuzziness;
this.signal_id = signal_id;
this.channels = channels;
this.volume = volume;
this.falloff = falloff;
}
}
}