Files
BlenderSharp/BlendFile/DNA/WipeVars.cs
2025-02-19 17:07:50 +01:00

40 lines
1.3 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(896, "WipeVars")]
public struct WipeVars {
[DNAFieldAttribute(0, "float", "edgeWidth", "float", 4, false)]
public float edgeWidth;
[DNAFieldAttribute(1, "float", "angle", "float", 4, false)]
public float angle;
[DNAFieldAttribute(2, "short", "forward", "short", 2, false)]
public short forward;
[DNAFieldAttribute(3, "short", "wipetype", "short", 2, false)]
public short wipetype;
public WipeVars() {
this.edgeWidth = default;
this.angle = default;
this.forward = default;
this.wipetype = default;
}
public WipeVars(float edgeWidth, float angle, short forward, short wipetype) {
this.edgeWidth = edgeWidth;
this.angle = angle;
this.forward = forward;
this.wipetype = wipetype;
}
}
}