Hugo Locurcio 2a962929f3 Update demo files for Godot 4.2.1 (#1013) | před 9 měsíci | |
---|---|---|
.. | ||
screenshots | před 1 rokem | |
2d_in_3d.gd | před 1 rokem | |
2d_in_3d.tscn | před 1 rokem | |
README.md | před 1 rokem | |
ball.png | před 4 roky | |
ball.png.import | před 9 měsíci | |
default_env.tres | před 2 roky | |
icon.webp | před 1 rokem | |
icon.webp.import | před 1 rokem | |
left_pallete.png | před 4 roky | |
left_pallete.png.import | před 9 měsíci | |
pong.gd | před 2 roky | |
project.godot | před 9 měsíci | |
right_pallete.png | před 4 roky | |
right_pallete.png.import | před 9 měsíci | |
separator.png | před 4 roky | |
separator.png.import | před 9 měsíci |
A demo showing how a 2D scene can be shown within a 3D scene using viewports.
Language: GDScript
Renderer: Forward Mobile
Check out this demo on the asset library: https://godotengine.org/asset-library/asset/129
The Pong game is rendered to a custom
Viewport
node rather than the main Viewport. In the code,
get_texture()
is called on the Viewport to get a
ViewportTexture
,
which is then assigned to the quad's material's albedo texture.