Hugo Locurcio 2a962929f3 Update demo files for Godot 4.2.1 (#1013) 8 tháng trước cách đây
..
screenshots 682b933dac Improve dynamic split screen demo (#815) 1 năm trước cách đây
README.md 682b933dac Improve dynamic split screen demo (#815) 1 năm trước cách đây
camera_controller.gd 682b933dac Improve dynamic split screen demo (#815) 1 năm trước cách đây
default_env.tres 3e3a9e7b6e Update Viewport demos to Godot 4 2 năm trước cách đây
icon.webp 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 năm trước cách đây
icon.webp.import 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 năm trước cách đây
player.gd 682b933dac Improve dynamic split screen demo (#815) 1 năm trước cách đây
project.godot 2a962929f3 Update demo files for Godot 4.2.1 (#1013) 8 tháng trước cách đây
split_screen.gdshader 682b933dac Improve dynamic split screen demo (#815) 1 năm trước cách đây
split_screen.tscn 63d1cd9a60 Use 128×128 WebP icons for all demos (#885) 1 năm trước cách đây
wall_coloring.gd 1cf4fff74a Remove unnecessary `randomize()` (#862) 1 năm trước cách đây

README.md

Dynamic Split Screen

This sample project showcases an implementation of dynamic split screen, also called Voronoi split screen.

Language: Godot shader language and GDScript

Renderer: Forward Mobile

Check out this demo on the asset library: https://godotengine.org/asset-library/asset/541

Details

A dynamic split screen system displays a single screen when the two players are close but a splitted view when they move apart.

The splitting line can take any angle depending on the players' position, so it won't be either vertical or horizontal.

This system was popularized by the Lego videogames.

How it works

Two cameras are placed inside two separate viewports and their texture, as well as some other parameters, are passed to a shader attached to a TextureRect filling the whole screen.

The SplitScreen shader, with the help of the CameraController script, chooses wich texture to display on each pixel to achieve the effect.

The cameras are placed on the segment joining the two players, either in the middle if they're close enough or at a fixed distance otherwise.

How to use it

Open and launch the project inside the Godot engine, then use WASD to move the first player (in red) and IJKL (or arrow keys) to move the second player (in blue).

The camera_controller.gd script sets parameters to tune the distance at which the screen splits and also the width and color of the splitting line.

Screenshots

Screenshots