Files
BlenderSharp/BlendFile/DNA/bFollowPathConstraint.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

40 lines
1.4 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")]
public class bFollowPathConstraint {
[DNAFieldAttribute(0, "Object", "*tar", 1160)]
public Object ptr_tar;
[DNAFieldAttribute(1, "float", "offset", 4)]
public float offset;
[DNAFieldAttribute(2, "float", "offset_fac", 4)]
public float offset_fac;
[DNAFieldAttribute(3, "int", "followflag", 4)]
public int followflag;
[DNAFieldAttribute(4, "short", "trackflag", 2)]
public short trackflag;
[DNAFieldAttribute(5, "short", "upflag", 2)]
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;
}
}
}