Files
BlenderSharp/BlendFile/DNA/PointCloud.cs

46 lines
1.6 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 PointCloud {
public ID id;
public AnimData ptr_adt;
public int flag;
public int totpoint;
public CustomData pdata;
public int attributes_active_index;
public int _pad4;
public Material ptr_ptr_mat;
public short totcol;
public short[] _pad3 = new System.Int16[3];
public PointCloudRuntimeHandle ptr_runtime;
public object ptr_batch_cache;
public PointCloud(ID id, AnimData ptr_adt, int flag, int totpoint, CustomData pdata, int attributes_active_index, int _pad4, Material ptr_ptr_mat, short totcol, short[] _pad3, PointCloudRuntimeHandle ptr_runtime, object ptr_batch_cache) {
this.id = id;
this.ptr_adt = ptr_adt;
this.flag = flag;
this.totpoint = totpoint;
this.pdata = pdata;
this.attributes_active_index = attributes_active_index;
this._pad4 = _pad4;
this.ptr_ptr_mat = ptr_ptr_mat;
this.totcol = totcol;
this._pad3 = _pad3;
this.ptr_runtime = ptr_runtime;
this.ptr_batch_cache = ptr_batch_cache;
}
}
}