Files
BlenderSharp/BlendFile/DNA/VolumeDisplaceModifierData.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

34 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 {
public class VolumeDisplaceModifierData {
public ModifierData modifier;
public Tex ptr_texture;
public Object ptr_texture_map_object;
public int texture_map_mode;
public float strength;
public float[] texture_mid_level = new System.Single[3];
public float texture_sample_radius;
public VolumeDisplaceModifierData(ModifierData modifier, Tex ptr_texture, Object ptr_texture_map_object, int texture_map_mode, float strength, float[] texture_mid_level, float texture_sample_radius) {
this.modifier = modifier;
this.ptr_texture = ptr_texture;
this.ptr_texture_map_object = ptr_texture_map_object;
this.texture_map_mode = texture_map_mode;
this.strength = strength;
this.texture_mid_level = texture_mid_level;
this.texture_sample_radius = texture_sample_radius;
}
}
}