Added memoryOffset value to DNAFieldAttribute, regenerated files.
This commit is contained in:
@@ -15,33 +15,33 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(123, "BoidState", 128)]
|
||||
public class BoidState {
|
||||
[DNAFieldAttribute(0, "BoidState", "*next", "BoidState", 8, true)]
|
||||
[DNAFieldAttribute(0, "BoidState", "*next", "BoidState", 8, true, 0)]
|
||||
public BoidState ptr_next;
|
||||
[DNAFieldAttribute(1, "BoidState", "*prev", "BoidState", 8, true)]
|
||||
[DNAFieldAttribute(1, "BoidState", "*prev", "BoidState", 8, true, 8)]
|
||||
public BoidState ptr_prev;
|
||||
[DNAFieldAttribute(2, "ListBase", "rules", "ListBase", 16, false)]
|
||||
[DNAFieldAttribute(2, "ListBase", "rules", "ListBase", 16, false, 16)]
|
||||
public ListBase rules;
|
||||
[DNAFieldAttribute(3, "ListBase", "conditions", "ListBase", 16, false)]
|
||||
[DNAFieldAttribute(3, "ListBase", "conditions", "ListBase", 16, false, 32)]
|
||||
public ListBase conditions;
|
||||
[DNAFieldAttribute(4, "ListBase", "actions", "ListBase", 16, false)]
|
||||
[DNAFieldAttribute(4, "ListBase", "actions", "ListBase", 16, false, 48)]
|
||||
public ListBase actions;
|
||||
[DNAFieldAttribute(5, "char", "name[32]", "System.Char[]", 32, false)]
|
||||
[DNAFieldAttribute(5, "char", "name[32]", "System.Char[]", 32, false, 64)]
|
||||
public char[] name = new System.Char[32];
|
||||
[DNAFieldAttribute(6, "int", "id", "int", 4, false)]
|
||||
[DNAFieldAttribute(6, "int", "id", "int", 4, false, 96)]
|
||||
public int id;
|
||||
[DNAFieldAttribute(7, "int", "flag", "int", 4, false)]
|
||||
[DNAFieldAttribute(7, "int", "flag", "int", 4, false, 100)]
|
||||
public int flag;
|
||||
[DNAFieldAttribute(8, "int", "ruleset_type", "int", 4, false)]
|
||||
[DNAFieldAttribute(8, "int", "ruleset_type", "int", 4, false, 104)]
|
||||
public int ruleset_type;
|
||||
[DNAFieldAttribute(9, "float", "rule_fuzziness", "float", 4, false)]
|
||||
[DNAFieldAttribute(9, "float", "rule_fuzziness", "float", 4, false, 108)]
|
||||
public float rule_fuzziness;
|
||||
[DNAFieldAttribute(10, "int", "signal_id", "int", 4, false)]
|
||||
[DNAFieldAttribute(10, "int", "signal_id", "int", 4, false, 112)]
|
||||
public int signal_id;
|
||||
[DNAFieldAttribute(11, "int", "channels", "int", 4, false)]
|
||||
[DNAFieldAttribute(11, "int", "channels", "int", 4, false, 116)]
|
||||
public int channels;
|
||||
[DNAFieldAttribute(12, "float", "volume", "float", 4, false)]
|
||||
[DNAFieldAttribute(12, "float", "volume", "float", 4, false, 120)]
|
||||
public float volume;
|
||||
[DNAFieldAttribute(13, "float", "falloff", "float", 4, false)]
|
||||
[DNAFieldAttribute(13, "float", "falloff", "float", 4, false, 124)]
|
||||
public float falloff;
|
||||
public BoidState() {
|
||||
this.ptr_next = default;
|
||||
|
||||
Reference in New Issue
Block a user