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

48 lines
1.7 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(189, "bFollowPathConstraint", 24)]
public class bFollowPathConstraint {
[DNAFieldAttribute(8, "Object", 0, "*tar", "Object", true, 0)]
public Object tar;
[DNAFieldAttribute(4, "float", 1, "offset", "float", false, 8)]
public float offset;
[DNAFieldAttribute(4, "float", 2, "offset_fac", "float", false, 12)]
public float offset_fac;
[DNAFieldAttribute(4, "int", 3, "followflag", "int", false, 16)]
public int followflag;
[DNAFieldAttribute(2, "short", 4, "trackflag", "short", false, 20)]
public short trackflag;
[DNAFieldAttribute(2, "short", 5, "upflag", "short", false, 22)]
public short upflag;
public bFollowPathConstraint() {
this.tar = default;
this.offset = default;
this.offset_fac = default;
this.followflag = default;
this.trackflag = default;
this.upflag = default;
}
public bFollowPathConstraint(Object tar, float offset, float offset_fac, int followflag, short trackflag, short upflag) {
this.tar = tar;
this.offset = offset;
this.offset_fac = offset_fac;
this.followflag = followflag;
this.trackflag = trackflag;
this.upflag = upflag;
}
}
}