finished tutorial 03

This commit is contained in:
h4570
2022-08-21 16:40:26 +02:00
parent 4303cc2c97
commit 409ee294eb
27 changed files with 349 additions and 25 deletions
+27
View File
@@ -0,0 +1,27 @@
/*
# _____ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2022, tyra - https://github.com/h4570/tyra
# Licensed under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#include "engine.hpp"
#include "tutorial_03.hpp"
/**
* In this tutorial we will learn:
* - What are the VU1 pipelines
* - How to create a 3D camera
* - What is the translation, rotation scale and model matrix
* - How to render 3D minecraft cubes
*/
int main() {
Tyra::Engine engine;
Tyra::Tutorial03 game(&engine);
engine.run(&game);
return 0;
}