Is it possible to create a compositing tree in a script?
The document tells about .IsCompositingChild and .IsCompositingParent properties but they are read only.
Also I guessed and tried following lines of code but none worked.
The document tells about .IsCompositingChild and .IsCompositingParent properties but they are read only.
Also I guessed and tried following lines of code but none worked.
vtrack_0.SetParent(vtrack_1);
vtrack_0.SetCompositingParent(vtrack_1);
vtrack_0.AddChild(vtrack_1);
vtrack_0.AddCompositingChild(vtrack_1);
vtrack_0.CompositingChildren.Add(vtrack_1);
vtrack_0.CompositingChildren().Add(vtrack_1);