15 lines
492 B
C#
15 lines
492 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class CryptomatteLayer {
|
|
public CryptomatteEntry ptr_next;
|
|
public CryptomatteEntry ptr_prev;
|
|
public char[] name = new System.Char[64];
|
|
public CryptomatteLayer(CryptomatteEntry ptr_next, CryptomatteEntry ptr_prev, char[] name) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.name = name;
|
|
}
|
|
}
|
|
}
|