Files
BlenderSharp/BlendFile/DNA/GreasePencilLatticeModifierData.cs

32 lines
1.1 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class GreasePencilLatticeModifierData {
public ModifierData modifier;
public GreasePencilModifierInfluenceData influence;
public Object ptr_object;
public float strength;
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;
}
}
}