updated generated files

This commit is contained in:
mm00
2025-03-12 19:02:40 +01:00
parent 226f001c78
commit ba61ea59f9
650 changed files with 1951 additions and 1941 deletions

View File

@@ -68,6 +68,15 @@ namespace BlendFile {
this._ArrayLenght = value;
}
}
private bool _IsPointer;
public virtual bool IsPointer {
get {
return this._IsPointer;
}
set {
this._IsPointer = value;
}
}
private int _MemoryOffset;
public virtual int MemoryOffset {
get {
@@ -77,7 +86,7 @@ namespace BlendFile {
this._MemoryOffset = value;
}
}
public DNAArrayAttribute(int Size, string OriginalType, int OriginalIndex, string OriginalName, string UnderlyingType, int ArrayLenght, int MemoryOffset) :
public DNAArrayAttribute(int Size, string OriginalType, int OriginalIndex, string OriginalName, string UnderlyingType, int ArrayLenght, bool IsPointer, int MemoryOffset) :
base(OriginalIndex, OriginalName) {
this._Size = Size;
this._OriginalType = OriginalType;
@@ -85,6 +94,7 @@ namespace BlendFile {
this._OriginalName = OriginalName;
this._UnderlyingType = UnderlyingType;
this._ArrayLenght = ArrayLenght;
this._IsPointer = IsPointer;
this._MemoryOffset = MemoryOffset;
}
}