Files
BlenderSharp/BlendFile/DNA/GreasePencilDrawing.cs
2025-03-04 18:48:04 +01:00

36 lines
1.4 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(308, "GreasePencilDrawing", 560)]
public class GreasePencilDrawing {
[DNAFieldAttribute(8, "GreasePencilDrawingBase", 0, "base", "GreasePencilDrawingBase", false, 0)]
public GreasePencilDrawingBase @base;
[DNAFieldAttribute(544, "CurvesGeometry", 1, "geometry", "CurvesGeometry", false, 8)]
public CurvesGeometry geometry;
[DNAFieldAttribute(8, "GreasePencilDrawingRuntimeHandle", 2, "*runtime", "GreasePencilDrawingRuntimeHandle", true, 552)]
public GreasePencilDrawingRuntimeHandle runtime;
public GreasePencilDrawing() {
this.@base = default;
this.geometry = default;
this.runtime = default;
}
public GreasePencilDrawing(GreasePencilDrawingBase @base, CurvesGeometry geometry, GreasePencilDrawingRuntimeHandle runtime) {
this.@base = @base;
this.geometry = geometry;
this.runtime = runtime;
}
}
}