Regenerated codefiles
This commit is contained in:
@@ -15,45 +15,45 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(904, "SequenceModifierData", 112)]
|
||||
public class SequenceModifierData {
|
||||
[DNAFieldAttribute(0, "SequenceModifierData", "*next", "SequenceModifierData", 8, true, 0)]
|
||||
public SequenceModifierData ptr_next;
|
||||
[DNAFieldAttribute(1, "SequenceModifierData", "*prev", "SequenceModifierData", 8, true, 8)]
|
||||
public SequenceModifierData ptr_prev;
|
||||
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 16)]
|
||||
[DNAFieldAttribute(8, "SequenceModifierData", 0, "*next", "SequenceModifierData", true, 0)]
|
||||
public SequenceModifierData next;
|
||||
[DNAFieldAttribute(8, "SequenceModifierData", 1, "*prev", "SequenceModifierData", true, 8)]
|
||||
public SequenceModifierData prev;
|
||||
[DNAFieldAttribute(4, "int", 2, "type", "int", false, 16)]
|
||||
public int type;
|
||||
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 20)]
|
||||
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 20)]
|
||||
public int flag;
|
||||
[DNAFieldAttribute(4, "char", "name[64]", "System.Char[]", 64, false, 24)]
|
||||
[DNAFieldAttribute(64, "char", 4, "name[64]", "System.Char[]", false, 24)]
|
||||
public char[] name = new System.Char[64];
|
||||
[DNAFieldAttribute(5, "int", "mask_input_type", "int", 4, false, 88)]
|
||||
[DNAFieldAttribute(4, "int", 5, "mask_input_type", "int", false, 88)]
|
||||
public int mask_input_type;
|
||||
[DNAFieldAttribute(6, "int", "mask_time", "int", 4, false, 92)]
|
||||
[DNAFieldAttribute(4, "int", 6, "mask_time", "int", false, 92)]
|
||||
public int mask_time;
|
||||
[DNAFieldAttribute(7, "Sequence", "*mask_sequence", "Sequence", 8, true, 96)]
|
||||
public Sequence ptr_mask_sequence;
|
||||
[DNAFieldAttribute(8, "Mask", "*mask_id", "Mask", 8, true, 104)]
|
||||
public Mask ptr_mask_id;
|
||||
[DNAFieldAttribute(8, "Sequence", 7, "*mask_sequence", "Sequence", true, 96)]
|
||||
public Sequence mask_sequence;
|
||||
[DNAFieldAttribute(8, "Mask", 8, "*mask_id", "Mask", true, 104)]
|
||||
public Mask mask_id;
|
||||
public SequenceModifierData() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.type = default;
|
||||
this.flag = default;
|
||||
this.name = default;
|
||||
this.mask_input_type = default;
|
||||
this.mask_time = default;
|
||||
this.ptr_mask_sequence = default;
|
||||
this.ptr_mask_id = default;
|
||||
this.mask_sequence = default;
|
||||
this.mask_id = default;
|
||||
}
|
||||
public SequenceModifierData(SequenceModifierData ptr_next, SequenceModifierData ptr_prev, int type, int flag, char[] name, int mask_input_type, int mask_time, Sequence ptr_mask_sequence, Mask ptr_mask_id) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public SequenceModifierData(SequenceModifierData next, SequenceModifierData prev, int type, int flag, char[] name, int mask_input_type, int mask_time, Sequence mask_sequence, Mask mask_id) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.type = type;
|
||||
this.flag = flag;
|
||||
this.name = name;
|
||||
this.mask_input_type = mask_input_type;
|
||||
this.mask_time = mask_time;
|
||||
this.ptr_mask_sequence = ptr_mask_sequence;
|
||||
this.ptr_mask_id = ptr_mask_id;
|
||||
this.mask_sequence = mask_sequence;
|
||||
this.mask_id = mask_id;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user