add: if pos - start != render_distance then increase stop

This commit is contained in:
starnakin 2023-05-27 12:52:23 +02:00
parent 76a3894730
commit f17dee09e8

View File

@ -6,6 +6,14 @@ def render(pos: int, min: int, max: int, render_distance: int, elements: list):
if (stop > max):
stop = max;
i = 0;
y = pos - start;
if (y < min):
y = pos;
if (stop - start != render_distance * 2 + 1):
if (pos - start != render_distance):
stop = stop + render_distance - start - pos
# elif (stop + render_distance > max):
# start = start - (stop + render_distance - max)
y = pos - start;
if (y < min):
y = pos;