- Added auto generation of DNAClass attributes on file generation - Regenerated all files
40 lines
1.3 KiB
C#
40 lines
1.3 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(810, "ParticleBrushData")]
|
|
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;
|
|
}
|
|
}
|
|
}
|