add: if pos - start != render_distance then increase stop
This commit is contained in:
parent
76a3894730
commit
f17dee09e8
10
utils.py
10
utils.py
@ -8,7 +8,15 @@ def render(pos: int, min: int, max: int, render_distance: int, elements: list):
|
|||||||
i = 0;
|
i = 0;
|
||||||
y = pos - start;
|
y = pos - start;
|
||||||
if (y < min):
|
if (y < min):
|
||||||
y = pos ;
|
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;
|
||||||
return (start, stop, y);
|
return (start, stop, y);
|
||||||
|
|
||||||
def get_sizes(size1: int, size2: int, total_size: int, aim_ratio: float):
|
def get_sizes(size1: int, size2: int, total_size: int, aim_ratio: float):
|
||||||
|
Loading…
Reference in New Issue
Block a user