```
extends Sprite2D
func ready():
var viewportTexture = ViewportTexture.new()
viewportTexture.viewportpath = get_viewport()
texture = viewportTexture
```

How do I use the base viewport for something like this? It's for splitscreen with multiple windows. The engine just doesn't accept a Window for a ViewportTexture even though it inherits.
