Fixed list length value returning always zero.
Added separated pointer and count memory offsets to list attributes. Tried handling them
This commit is contained in:
@@ -13,7 +13,7 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
[DNAClassAttribute(66, "ActionLayer", 76)]
|
||||
[DNAClassAttribute(66, "ActionLayer", 84)]
|
||||
public class ActionLayer {
|
||||
[DNAFieldAttribute(64, "char", 0, "name[64]", "System.Char[]", false, 0)]
|
||||
public char[] name = new System.Char[64];
|
||||
@@ -27,7 +27,7 @@ namespace BlendFile.DNA {
|
||||
public byte[] _pad0 = new System.Byte[2];
|
||||
[DNAFieldAttribute(4, "uchar", 7, "_pad1[4]", "System.Byte[]", false, 72)]
|
||||
public byte[] _pad1 = new System.Byte[4];
|
||||
[DNAListAttribute(8, "ActionStrip", "**strip_array", 5, "ActionStrip", "strip_array_num", 6, 76)]
|
||||
[DNAListAttribute(8, "ActionStrip", "**strip_array", 5, "ActionStrip", "strip_array_num", 6, 76, 0)]
|
||||
public System.Collections.Generic.List<ActionStrip> strip_array;
|
||||
public ActionLayer() {
|
||||
this.name = default;
|
||||
|
||||
Reference in New Issue
Block a user