40 lines
1.3 KiB
C#
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)]
|
|
public float edgeWidth;
|
|
[DNAFieldAttribute(1, "float", "angle", "float", 4)]
|
|
public float angle;
|
|
[DNAFieldAttribute(2, "short", "forward", "short", 2)]
|
|
public short forward;
|
|
[DNAFieldAttribute(3, "short", "wipetype", "short", 2)]
|
|
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;
|
|
}
|
|
}
|
|
}
|