- Added auto generation of DNAClass attributes on file generation - Regenerated all files
37 lines
1.4 KiB
C#
37 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(535, "GreasePencilLatticeModifierData")]
|
|
public class GreasePencilLatticeModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "GreasePencilModifierInfluenceData", "influence", 168)]
|
|
public GreasePencilModifierInfluenceData influence;
|
|
[DNAFieldAttribute(2, "Object", "*object", 1160)]
|
|
public Object ptr_object;
|
|
[DNAFieldAttribute(3, "float", "strength", 4)]
|
|
public float strength;
|
|
[DNAFieldAttribute(4, "char", "_pad[4]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
public GreasePencilLatticeModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object ptr_object, float strength, char[] _pad) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.ptr_object = ptr_object;
|
|
this.strength = strength;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|