1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# splitter [](https://godotengine.org "Made with godot") ](https://www.npmjs.com/package/@bendn/remap) <a href='https://ko-fi.com/bendn' title='Buy me a coffee' target='_blank'><img height='28' src='https://storage.ko-fi.com/cdn/brandasset/kofi_button_red.png' alt='Buy me a coffee'> </a> Small addon for multiplayer splitscreen [](_blank "Picture!") ## Usage ```GDScript extends Splitscreen func _ready() -> void: super() var cam := Camera3D.new() join().add_child(cam) await get_tree().create_timer(1).timeout cam = Camera3D.new() join().add_child(cam) ```