Files
BlenderSharp/BlendFile/DNAListAttribute.cs
2025-03-06 19:41:37 +01:00

122 lines
3.7 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile {
[AttributeUsageAttribute(AttributeTargets.Property | AttributeTargets.Field)]
public class DNAListAttribute : BlendFile.DNAAttribute {
private int _Size;
public virtual int Size {
get {
return this._Size;
}
set {
this._Size = value;
}
}
private string _OriginalType;
public virtual string OriginalType {
get {
return this._OriginalType;
}
set {
this._OriginalType = value;
}
}
private string _OriginalName;
public virtual string OriginalName {
get {
return this._OriginalName;
}
set {
this._OriginalName = value;
}
}
private int _OriginalIndex;
public virtual int OriginalIndex {
get {
return this._OriginalIndex;
}
set {
this._OriginalIndex = value;
}
}
private string _UnderlyingType;
public virtual string UnderlyingType {
get {
return this._UnderlyingType;
}
set {
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 {
return this._CountFieldName;
}
set {
this._CountFieldName = value;
}
}
private int _CountFieldIndex;
public virtual int CountFieldIndex {
get {
return this._CountFieldIndex;
}
set {
this._CountFieldIndex = value;
}
}
private int _PtrMemoryOffset;
public virtual int PtrMemoryOffset {
get {
return this._PtrMemoryOffset;
}
set {
this._PtrMemoryOffset = value;
}
}
private int _CountMemoryOffset;
public virtual int CountMemoryOffset {
get {
return this._CountMemoryOffset;
}
set {
this._CountMemoryOffset = value;
}
}
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;
this._CountMemoryOffset = CountMemoryOffset;
}
}
}