- Added auto generation of DNAClass attributes on file generation - Regenerated all files
98 lines
4.3 KiB
C#
98 lines
4.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(495, "WeightVGProximityModifierData")]
|
|
public class WeightVGProximityModifierData {
|
|
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
|
|
public ModifierData modifier;
|
|
[DNAFieldAttribute(1, "char", "defgrp_name[64]", 1)]
|
|
public char[] defgrp_name = new System.Char[64];
|
|
[DNAFieldAttribute(2, "CurveMapping", "*cmap_curve", 424)]
|
|
public CurveMapping ptr_cmap_curve;
|
|
[DNAFieldAttribute(3, "int", "proximity_mode", 4)]
|
|
public int proximity_mode;
|
|
[DNAFieldAttribute(4, "int", "proximity_flags", 4)]
|
|
public int proximity_flags;
|
|
[DNAFieldAttribute(5, "Object", "*proximity_ob_target", 1160)]
|
|
public Object ptr_proximity_ob_target;
|
|
[DNAFieldAttribute(6, "float", "mask_constant", 4)]
|
|
public float mask_constant;
|
|
[DNAFieldAttribute(7, "char", "mask_defgrp_name[64]", 1)]
|
|
public char[] mask_defgrp_name = new System.Char[64];
|
|
[DNAFieldAttribute(8, "int", "mask_tex_use_channel", 4)]
|
|
public int mask_tex_use_channel;
|
|
[DNAFieldAttribute(9, "Tex", "*mask_texture", 488)]
|
|
public Tex ptr_mask_texture;
|
|
[DNAFieldAttribute(10, "Object", "*mask_tex_map_obj", 1160)]
|
|
public Object ptr_mask_tex_map_obj;
|
|
[DNAFieldAttribute(11, "char", "mask_tex_map_bone[64]", 1)]
|
|
public char[] mask_tex_map_bone = new System.Char[64];
|
|
[DNAFieldAttribute(12, "int", "mask_tex_mapping", 4)]
|
|
public int mask_tex_mapping;
|
|
[DNAFieldAttribute(13, "char", "mask_tex_uvlayer_name[68]", 1)]
|
|
public char[] mask_tex_uvlayer_name = new System.Char[68];
|
|
[DNAFieldAttribute(14, "char", "_pad1[4]", 1)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
[DNAFieldAttribute(15, "float", "min_dist", 4)]
|
|
public float min_dist;
|
|
[DNAFieldAttribute(16, "float", "max_dist", 4)]
|
|
public float max_dist;
|
|
[DNAFieldAttribute(17, "short", "falloff_type", 2)]
|
|
public short falloff_type;
|
|
[DNAFieldAttribute(18, "char", "_pad0[2]", 1)]
|
|
public char[] _pad0 = new System.Char[2];
|
|
public WeightVGProximityModifierData(
|
|
ModifierData modifier,
|
|
char[] defgrp_name,
|
|
CurveMapping ptr_cmap_curve,
|
|
int proximity_mode,
|
|
int proximity_flags,
|
|
Object ptr_proximity_ob_target,
|
|
float mask_constant,
|
|
char[] mask_defgrp_name,
|
|
int mask_tex_use_channel,
|
|
Tex ptr_mask_texture,
|
|
Object ptr_mask_tex_map_obj,
|
|
char[] mask_tex_map_bone,
|
|
int mask_tex_mapping,
|
|
char[] mask_tex_uvlayer_name,
|
|
char[] _pad1,
|
|
float min_dist,
|
|
float max_dist,
|
|
short falloff_type,
|
|
char[] _pad0) {
|
|
this.modifier = modifier;
|
|
this.defgrp_name = defgrp_name;
|
|
this.ptr_cmap_curve = ptr_cmap_curve;
|
|
this.proximity_mode = proximity_mode;
|
|
this.proximity_flags = proximity_flags;
|
|
this.ptr_proximity_ob_target = ptr_proximity_ob_target;
|
|
this.mask_constant = mask_constant;
|
|
this.mask_defgrp_name = mask_defgrp_name;
|
|
this.mask_tex_use_channel = mask_tex_use_channel;
|
|
this.ptr_mask_texture = ptr_mask_texture;
|
|
this.ptr_mask_tex_map_obj = ptr_mask_tex_map_obj;
|
|
this.mask_tex_map_bone = mask_tex_map_bone;
|
|
this.mask_tex_mapping = mask_tex_mapping;
|
|
this.mask_tex_uvlayer_name = mask_tex_uvlayer_name;
|
|
this._pad1 = _pad1;
|
|
this.min_dist = min_dist;
|
|
this.max_dist = max_dist;
|
|
this.falloff_type = falloff_type;
|
|
this._pad0 = _pad0;
|
|
}
|
|
}
|
|
}
|