Files
BlenderSharp/BlendFile/DNA/ParticleBrushData.cs
2025-01-22 20:24:55 +01:00

39 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;
public struct ParticleBrushData {
[DNAFieldAttribute(0, "short", "size", 2)]
public short size;
[DNAFieldAttribute(1, "short", "step", 2)]
public short step;
[DNAFieldAttribute(2, "short", "invert", 2)]
public short invert;
[DNAFieldAttribute(3, "short", "count", 2)]
public short count;
[DNAFieldAttribute(4, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(5, "float", "strength", 4)]
public float strength;
public ParticleBrushData(short size, short step, short invert, short count, int flag, float strength) {
this.size = size;
this.step = step;
this.invert = invert;
this.count = count;
this.flag = flag;
this.strength = strength;
}
}
}