Files
BlenderSharp/BlendFile/DNA/WipeVars.cs
2025-03-04 18:48:04 +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", 12)]
public class WipeVars {
[DNAFieldAttribute(4, "float", 0, "edgeWidth", "float", false, 0)]
public float edgeWidth;
[DNAFieldAttribute(4, "float", 1, "angle", "float", false, 4)]
public float angle;
[DNAFieldAttribute(2, "short", 2, "forward", "short", false, 8)]
public short forward;
[DNAFieldAttribute(2, "short", 3, "wipetype", "short", false, 10)]
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;
}
}
}