Added count field type argument to the list attribute
This commit is contained in:
@@ -59,6 +59,15 @@ namespace BlendFile {
|
||||
this._UnderlyingType = value;
|
||||
}
|
||||
}
|
||||
private string _CountFieldType;
|
||||
public virtual string CountFieldType {
|
||||
get {
|
||||
return this._CountFieldType;
|
||||
}
|
||||
set {
|
||||
this._CountFieldType = value;
|
||||
}
|
||||
}
|
||||
private string _CountFieldName;
|
||||
public virtual string CountFieldName {
|
||||
get {
|
||||
@@ -95,13 +104,14 @@ namespace BlendFile {
|
||||
this._CountMemoryOffset = value;
|
||||
}
|
||||
}
|
||||
public DNAListAttribute(int Size, string OriginalType, string OriginalName, int OriginalIndex, string UnderlyingType, string CountFieldName, int CountFieldIndex, int PtrMemoryOffset, int CountMemoryOffset) :
|
||||
public DNAListAttribute(int Size, string OriginalType, string OriginalName, int OriginalIndex, string UnderlyingType, string CountFieldType, string CountFieldName, int CountFieldIndex, int PtrMemoryOffset, int CountMemoryOffset) :
|
||||
base(OriginalIndex, OriginalName) {
|
||||
this._Size = Size;
|
||||
this._OriginalType = OriginalType;
|
||||
this._OriginalName = OriginalName;
|
||||
this._OriginalIndex = OriginalIndex;
|
||||
this._UnderlyingType = UnderlyingType;
|
||||
this._CountFieldType = CountFieldType;
|
||||
this._CountFieldName = CountFieldName;
|
||||
this._CountFieldIndex = CountFieldIndex;
|
||||
this._PtrMemoryOffset = PtrMemoryOffset;
|
||||
|
||||
Reference in New Issue
Block a user