regenerated files

This commit is contained in:
mm00
2025-02-19 17:07:50 +01:00
parent f327f18b57
commit 380949122c
935 changed files with 9595 additions and 9586 deletions

View File

@@ -15,51 +15,51 @@ namespace BlendFile.DNA {
[DNAClassAttribute(124, "BoidSettings")]
public struct BoidSettings {
[DNAFieldAttribute(0, "int", "options", "int", 4)]
[DNAFieldAttribute(0, "int", "options", "int", 4, false)]
public int options;
[DNAFieldAttribute(1, "int", "last_state_id", "int", 4)]
[DNAFieldAttribute(1, "int", "last_state_id", "int", 4, false)]
public int last_state_id;
[DNAFieldAttribute(2, "float", "landing_smoothness", "float", 4)]
[DNAFieldAttribute(2, "float", "landing_smoothness", "float", 4, false)]
public float landing_smoothness;
[DNAFieldAttribute(3, "float", "height", "float", 4)]
[DNAFieldAttribute(3, "float", "height", "float", 4, false)]
public float height;
[DNAFieldAttribute(4, "float", "banking", "float", 4)]
[DNAFieldAttribute(4, "float", "banking", "float", 4, false)]
public float banking;
[DNAFieldAttribute(5, "float", "pitch", "float", 4)]
[DNAFieldAttribute(5, "float", "pitch", "float", 4, false)]
public float pitch;
[DNAFieldAttribute(6, "float", "health", "float", 4)]
[DNAFieldAttribute(6, "float", "health", "float", 4, false)]
public float health;
[DNAFieldAttribute(7, "float", "aggression", "float", 4)]
[DNAFieldAttribute(7, "float", "aggression", "float", 4, false)]
public float aggression;
[DNAFieldAttribute(8, "float", "strength", "float", 4)]
[DNAFieldAttribute(8, "float", "strength", "float", 4, false)]
public float strength;
[DNAFieldAttribute(9, "float", "accuracy", "float", 4)]
[DNAFieldAttribute(9, "float", "accuracy", "float", 4, false)]
public float accuracy;
[DNAFieldAttribute(10, "float", "range", "float", 4)]
[DNAFieldAttribute(10, "float", "range", "float", 4, false)]
public float range;
[DNAFieldAttribute(11, "float", "air_min_speed", "float", 4)]
[DNAFieldAttribute(11, "float", "air_min_speed", "float", 4, false)]
public float air_min_speed;
[DNAFieldAttribute(12, "float", "air_max_speed", "float", 4)]
[DNAFieldAttribute(12, "float", "air_max_speed", "float", 4, false)]
public float air_max_speed;
[DNAFieldAttribute(13, "float", "air_max_acc", "float", 4)]
[DNAFieldAttribute(13, "float", "air_max_acc", "float", 4, false)]
public float air_max_acc;
[DNAFieldAttribute(14, "float", "air_max_ave", "float", 4)]
[DNAFieldAttribute(14, "float", "air_max_ave", "float", 4, false)]
public float air_max_ave;
[DNAFieldAttribute(15, "float", "air_personal_space", "float", 4)]
[DNAFieldAttribute(15, "float", "air_personal_space", "float", 4, false)]
public float air_personal_space;
[DNAFieldAttribute(16, "float", "land_jump_speed", "float", 4)]
[DNAFieldAttribute(16, "float", "land_jump_speed", "float", 4, false)]
public float land_jump_speed;
[DNAFieldAttribute(17, "float", "land_max_speed", "float", 4)]
[DNAFieldAttribute(17, "float", "land_max_speed", "float", 4, false)]
public float land_max_speed;
[DNAFieldAttribute(18, "float", "land_max_acc", "float", 4)]
[DNAFieldAttribute(18, "float", "land_max_acc", "float", 4, false)]
public float land_max_acc;
[DNAFieldAttribute(19, "float", "land_max_ave", "float", 4)]
[DNAFieldAttribute(19, "float", "land_max_ave", "float", 4, false)]
public float land_max_ave;
[DNAFieldAttribute(20, "float", "land_personal_space", "float", 4)]
[DNAFieldAttribute(20, "float", "land_personal_space", "float", 4, false)]
public float land_personal_space;
[DNAFieldAttribute(21, "float", "land_stick_force", "float", 4)]
[DNAFieldAttribute(21, "float", "land_stick_force", "float", 4, false)]
public float land_stick_force;
[DNAFieldAttribute(22, "ListBase", "states", "ListBase", 16)]
[DNAFieldAttribute(22, "ListBase", "states", "ListBase", 16, false)]
public ListBase states;
public BoidSettings() {
this.options = default;