Files
BlenderSharp/BlendFile/DNA/LightLinking.cs
2025-02-19 18:48:50 +01:00

36 lines
1.4 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 {
using BlendFile;
[DNAClassAttribute(768, "LightLinking", 40)]
public class LightLinking {
[DNAFieldAttribute(0, "Collection", "*receiver_collection", "Collection", 8, true)]
public Collection ptr_receiver_collection;
[DNAFieldAttribute(1, "Collection", "*blocker_collection", "Collection", 8, true)]
public Collection ptr_blocker_collection;
[DNAFieldAttribute(2, "LightLinkingRuntime", "runtime", "LightLinkingRuntime", 24, false)]
public LightLinkingRuntime runtime;
public LightLinking() {
this.ptr_receiver_collection = default;
this.ptr_blocker_collection = default;
this.runtime = default;
}
public LightLinking(Collection ptr_receiver_collection, Collection ptr_blocker_collection, LightLinkingRuntime runtime) {
this.ptr_receiver_collection = ptr_receiver_collection;
this.ptr_blocker_collection = ptr_blocker_collection;
this.runtime = runtime;
}
}
}