Files
BlenderSharp/BlendFile/DNA/LightLinking.cs
2025-03-04 18:48:04 +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(8, "Collection", 0, "*receiver_collection", "Collection", true, 0)]
public Collection receiver_collection;
[DNAFieldAttribute(8, "Collection", 1, "*blocker_collection", "Collection", true, 8)]
public Collection blocker_collection;
[DNAFieldAttribute(24, "LightLinkingRuntime", 2, "runtime", "LightLinkingRuntime", false, 16)]
public LightLinkingRuntime runtime;
public LightLinking() {
this.receiver_collection = default;
this.blocker_collection = default;
this.runtime = default;
}
public LightLinking(Collection receiver_collection, Collection blocker_collection, LightLinkingRuntime runtime) {
this.receiver_collection = receiver_collection;
this.blocker_collection = blocker_collection;
this.runtime = runtime;
}
}
}