KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
endless_terrain
★ 11
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
spring-boot-virtual-threads-test
:
Load Testing for a Database Intensive application with Virtual Threads
silkroad
:
An autoscript to setup xray server to run vmess/vless/trojan to bypass certain restriction.
gustavomorinaga.dev
:
▲ My super website built with SvelteKit and served on Vercel.
hpm-ral
:
Register Access Layer for HPMicro Microcontrollers
open-blog-projects
:
A repository for code examples that are paired with our Open Blog posts
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
endless_terrain
?
Download (.md)
# 3D game, endless terrain tutorial In this [Youtube tutorial](https://youtu.be/1jNt91A2PW0) you will build a simple 3D "Endless Runner" mechanism in Godot 4. Completeing this tutorial will give you a great starting point to build your own endless runner 3D game. ## A terrain "conveyor" belt This is one strategy to accomplish an endless runner; the conveyor belt strategy. In our game style, the player is alwasy facing forward. We build a "catalog" of terrian blocks. When the game starts we load in a set of terrian blocks and start moving them in unison towards the player. As the game progresses, as terrian falls behind the field of of the player, we remove it from the scene as it serves no futher purpose. At the same time, we add another terrian block at the far horizon. This cycle continues givin the illution of infinite terrian.  📰 Join the [ExploreGameDev newsletter](https://exploregame.dev) to keep track of new tutorials