Files
BlenderSharp/BlendFile/DNA/bFollowPathConstraint.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

32 lines
1011 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 {
public class bFollowPathConstraint {
public Object ptr_tar;
public float offset;
public float offset_fac;
public int followflag;
public short trackflag;
public short upflag;
public bFollowPathConstraint(Object ptr_tar, float offset, float offset_fac, int followflag, short trackflag, short upflag) {
this.ptr_tar = ptr_tar;
this.offset = offset;
this.offset_fac = offset_fac;
this.followflag = followflag;
this.trackflag = trackflag;
this.upflag = upflag;
}
}
}