Files
BlenderSharp/BlendFile/DNA/FMod_Stepped.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

37 lines
1.2 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(89, "FMod_Stepped")]
public struct FMod_Stepped {
[DNAFieldAttribute(0, "float", "step_size", 4)]
public float step_size;
[DNAFieldAttribute(1, "float", "offset", 4)]
public float offset;
[DNAFieldAttribute(2, "float", "start_frame", 4)]
public float start_frame;
[DNAFieldAttribute(3, "float", "end_frame", 4)]
public float end_frame;
[DNAFieldAttribute(4, "int", "flag", 4)]
public int flag;
public FMod_Stepped(float step_size, float offset, float start_frame, float end_frame, int flag) {
this.step_size = step_size;
this.offset = offset;
this.start_frame = start_frame;
this.end_frame = end_frame;
this.flag = flag;
}
}
}