Regenerated codefiles
This commit is contained in:
@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(876, "StripAnim", 24)]
|
||||
public class StripAnim {
|
||||
[DNAFieldAttribute(0, "StripAnim", "*next", "StripAnim", 8, true, 0)]
|
||||
public StripAnim ptr_next;
|
||||
[DNAFieldAttribute(1, "StripAnim", "*prev", "StripAnim", 8, true, 8)]
|
||||
public StripAnim ptr_prev;
|
||||
[DNAFieldAttribute(2, "ImBufAnim", "*anim", "ImBufAnim", 8, true, 16)]
|
||||
public ImBufAnim ptr_anim;
|
||||
[DNAFieldAttribute(8, "StripAnim", 0, "*next", "StripAnim", true, 0)]
|
||||
public StripAnim next;
|
||||
[DNAFieldAttribute(8, "StripAnim", 1, "*prev", "StripAnim", true, 8)]
|
||||
public StripAnim prev;
|
||||
[DNAFieldAttribute(8, "ImBufAnim", 2, "*anim", "ImBufAnim", true, 16)]
|
||||
public ImBufAnim anim;
|
||||
public StripAnim() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_anim = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.anim = default;
|
||||
}
|
||||
public StripAnim(StripAnim ptr_next, StripAnim ptr_prev, ImBufAnim ptr_anim) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_anim = ptr_anim;
|
||||
public StripAnim(StripAnim next, StripAnim prev, ImBufAnim anim) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.anim = anim;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user