36 lines
1.2 KiB
C#
36 lines
1.2 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 22/01/2025 02:33:14
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class FluidModifierData {
|
|
public ModifierData modifier;
|
|
public FluidDomainSettings ptr_domain;
|
|
public FluidFlowSettings ptr_flow;
|
|
public FluidEffectorSettings ptr_effector;
|
|
public float time;
|
|
public int type;
|
|
public object ptr__pad1;
|
|
public FluidModifierData(ModifierData modifier, FluidDomainSettings ptr_domain, FluidFlowSettings ptr_flow, FluidEffectorSettings ptr_effector, float time, int type, object ptr__pad1) {
|
|
this.modifier = modifier;
|
|
this.ptr_domain = ptr_domain;
|
|
this.ptr_flow = ptr_flow;
|
|
this.ptr_effector = ptr_effector;
|
|
this.time = time;
|
|
this.type = type;
|
|
this.ptr__pad1 = ptr__pad1;
|
|
}
|
|
}
|
|
}
|