Files
BlenderSharp/BlendFile/DNA/bTransformCacheConstraint.cs
2025-03-12 19:02:40 +01:00

40 lines
1.6 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.DNA {
using BlendFile;
[DNAClassAttribute(204, "bTransformCacheConstraint", 2064)]
public class bTransformCacheConstraint {
[DNAFieldAttribute(8, "CacheFile", 0, "*cache_file", "CacheFile", true, 0)]
public CacheFile cache_file;
[DNAArrayAttribute(1024, "char", 1, "object_path[1024]", "System.Char[]", 1024, false, 8)]
public char[] object_path = new System.Char[1024];
[DNAFieldAttribute(8, "CacheReader", 2, "*reader", "CacheReader", true, 1032)]
public CacheReader reader;
[DNAArrayAttribute(1024, "char", 3, "reader_object_path[1024]", "System.Char[]", 1024, false, 1040)]
public char[] reader_object_path = new System.Char[1024];
public bTransformCacheConstraint() {
this.cache_file = default;
this.object_path = default;
this.reader = default;
this.reader_object_path = default;
}
public bTransformCacheConstraint(CacheFile cache_file, char[] object_path, CacheReader reader, char[] reader_object_path) {
this.cache_file = cache_file;
this.object_path = object_path;
this.reader = reader;
this.reader_object_path = reader_object_path;
}
}
}