- Added auto generation of DNAClass attributes on file generation - Regenerated all files
46 lines
1.9 KiB
C#
46 lines
1.9 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(549, "GreasePencilOutlineModifierData")]
|
|
public class GreasePencilOutlineModifierData {
|
|
[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, "int", "flag", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(4, "int", "thickness", 4)]
|
|
public int thickness;
|
|
[DNAFieldAttribute(5, "float", "sample_length", 4)]
|
|
public float sample_length;
|
|
[DNAFieldAttribute(6, "int", "subdiv", 4)]
|
|
public int subdiv;
|
|
[DNAFieldAttribute(7, "Material", "*outline_material", 392)]
|
|
public Material ptr_outline_material;
|
|
public GreasePencilOutlineModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object ptr_object, int flag, int thickness, float sample_length, int subdiv, Material ptr_outline_material) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.ptr_object = ptr_object;
|
|
this.flag = flag;
|
|
this.thickness = thickness;
|
|
this.sample_length = sample_length;
|
|
this.subdiv = subdiv;
|
|
this.ptr_outline_material = ptr_outline_material;
|
|
}
|
|
}
|
|
}
|