-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
158620a
commit 6651524
Showing
1 changed file
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,27 @@ It is about an 'astronaut' whose mission is to explore Mars in search of life si | |
|
||
## Technical aspect | ||
|
||
This will be a 3D game written in C using Raylib. The gameplay will feature a procedurally generated terrain created with my own algorithm, based on Perlin noise generation. It will be almost infinity since it's limited to match the actual scale of the real planet's surface. Yes, it's vast, but don't worry; I'm planning to make the gameplay as dynamic as possible, even in a story-driven context. | ||
This will be a 3D game written in C++ using Raylib. The gameplay will feature a procedurally generated terrain created with my own algorithm, based on Perlin noise generation. It will be almost infinity since it's limited to match the actual scale of the real planet's surface. Yes, it's vast, but don't worry; I'm planning to make the gameplay as dynamic as possible, even in a story-driven context. | ||
|
||
## Stay updated | ||
|
||
Despite the many demands in my life, I promise to share regular updates related to the game on my [social media](https://linktr.ee/flareonz44) platforms. So, stay tuned for the latest developments! | ||
|
||
Lastly, if you're interested in contributing or joining the team, feel free to reach out to me through Twitter, Instagram, or, if you prefer, via email at **[email protected]**. | ||
|
||
Keep rocking on! | ||
## Dev Posts! | ||
|
||
{% if site.posts.size > 0 %} | ||
<ul> | ||
{% for post in site.posts %} | ||
{% if post.tags contains 'BeyonderMR' %} | ||
<li class="post-list-item"> | ||
<span class="home-date"> | ||
{{ post.date | date: site.theme_config.date_format }}» | ||
</span> | ||
<a href="{{ post.url | relative_url }}">{{ post.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
{% endif %} |