Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(119, "BoidRuleFollowLeader", 104)]
public class BoidRuleFollowLeader {
[DNAFieldAttribute(0, "BoidRule", "rule", "BoidRule", 56, false)]
[DNAFieldAttribute(0, "BoidRule", "rule", "BoidRule", 56, false, 0)]
public BoidRule rule;
[DNAFieldAttribute(1, "Object", "*ob", "Object", 8, true)]
[DNAFieldAttribute(1, "Object", "*ob", "Object", 8, true, 56)]
public Object ptr_ob;
[DNAFieldAttribute(2, "float", "loc[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(2, "float", "loc[3]", "System.Single[]", 12, false, 64)]
public float[] loc = new System.Single[3];
[DNAFieldAttribute(3, "float", "oloc[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(3, "float", "oloc[3]", "System.Single[]", 12, false, 76)]
public float[] oloc = new System.Single[3];
[DNAFieldAttribute(4, "float", "cfra", "float", 4, false)]
[DNAFieldAttribute(4, "float", "cfra", "float", 4, false, 88)]
public float cfra;
[DNAFieldAttribute(5, "float", "distance", "float", 4, false)]
[DNAFieldAttribute(5, "float", "distance", "float", 4, false, 92)]
public float distance;
[DNAFieldAttribute(6, "int", "options", "int", 4, false)]
[DNAFieldAttribute(6, "int", "options", "int", 4, false, 96)]
public int options;
[DNAFieldAttribute(7, "int", "queue_size", "int", 4, false)]
[DNAFieldAttribute(7, "int", "queue_size", "int", 4, false, 100)]
public int queue_size;
public BoidRuleFollowLeader() {
this.rule = default;