Aligning skywall slightly.
This commit is contained in:
@ -14,7 +14,6 @@ void skywallInit(primitive_t *primitive) {
|
|||||||
indice_t indices[SKYWALL_INDICE_COUNT];
|
indice_t indices[SKYWALL_INDICE_COUNT];
|
||||||
int32_t n, i, j;
|
int32_t n, i, j;
|
||||||
float x, z, p, r;
|
float x, z, p, r;
|
||||||
int32_t slices;
|
|
||||||
|
|
||||||
// For each slice. We iterate slices+1 to do the wrapping mentioned below.
|
// For each slice. We iterate slices+1 to do the wrapping mentioned below.
|
||||||
for(i = 0; i < SKYWALL_SLICE_COUNT+1; i++) {
|
for(i = 0; i < SKYWALL_SLICE_COUNT+1; i++) {
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include "../primitive.h"
|
#include "../primitive.h"
|
||||||
|
|
||||||
/** How many slices in each cylinder. */
|
/** How many slices in each cylinder. */
|
||||||
#define SKYWALL_SLICE_COUNT 20
|
#define SKYWALL_SLICE_COUNT 40
|
||||||
|
|
||||||
/** How many vertices per slice */
|
/** How many vertices per slice */
|
||||||
#define SKYWALL_VERTICES_PER_SLICE 2
|
#define SKYWALL_VERTICES_PER_SLICE 2
|
||||||
|
@ -42,7 +42,7 @@ void vnSceneRenderWorld(vnscene_t *scene, engine_t *engine, shader_t *shader) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Set Camera Perspective
|
// Set Camera Perspective
|
||||||
cameraPerspective(&scene->camera, 35,
|
cameraPerspective(&scene->camera, 45,
|
||||||
engine->render.width/engine->render.height,
|
engine->render.width/engine->render.height,
|
||||||
0.01, 1000.0
|
0.01, 1000.0
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user