You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: genesis/options/morphs.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -893,6 +893,8 @@ class Terrain(Morph):
893
893
The size of each cell in the subterrain in meters. Defaults to 0.25.
894
894
vertical_scale : float, optional
895
895
The height of each step in the subterrain in meters. Defaults to 0.005.
896
+
uv_scale : float, optional
897
+
The scale of the UV mapping for the terrain. Defaults to 1.0.
896
898
subterrain_types : str or 2D list of str, optional
897
899
The types of subterrains to generate. If a string, it will be repeated for all subterrains. If a 2D list, it should have the same shape as `n_subterrains`.
898
900
height_field : array-like, optional
@@ -911,6 +913,7 @@ class Terrain(Morph):
911
913
subterrain_size: Tuple[float, float] = (12.0, 12.0) # meter
912
914
horizontal_scale: float=0.25# meter size of each cell in the subterrain
913
915
vertical_scale: float=0.005# meter height of each step in the subterrain
0 commit comments