Files
BlenderSharp/BlendFile/DNA/RepeatZoneViewerPathElem.cs
2025-01-22 20:24:55 +01:00

30 lines
1021 B
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;
public struct RepeatZoneViewerPathElem {
[DNAFieldAttribute(0, "ViewerPathElem", "base", 32)]
public ViewerPathElem @base;
[DNAFieldAttribute(1, "int", "repeat_output_node_id", 4)]
public int repeat_output_node_id;
[DNAFieldAttribute(2, "int", "iteration", 4)]
public int iteration;
public RepeatZoneViewerPathElem(ViewerPathElem @base, int repeat_output_node_id, int iteration) {
this.@base = @base;
this.repeat_output_node_id = repeat_output_node_id;
this.iteration = iteration;
}
}
}