Files
BlenderSharp/BlendFile/DNA/LightLinking.cs
2025-01-22 02:23:29 +01:00

15 lines
592 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class LightLinking {
public Collection ptr_receiver_collection;
public Collection ptr_blocker_collection;
public LightLinkingRuntime runtime;
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;
}
}
}