//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 22/01/2025 02:33:14 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; } } }