Skip to content

Commit

Permalink
Updated ContentVersion.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
marcgpuig authored and bernatx committed Jan 20, 2020
1 parent f270aa5 commit 7bd95e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions PythonAPI/util/weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,55 +106,55 @@ def main():
metavar='A',
default=None,
type=float,
help='Sun altitude [-90 to 90]')
help='Sun altitude [-90.0, 90.0]')
argparser.add_argument(
'--azimuth', '-azm',
metavar='A',
default=None,
type=float,
help='Sun azimuth [0 to 360]')
help='Sun azimuth [0.0, 360.0]')
argparser.add_argument(
'--clouds', '-c',
metavar='C',
default=None,
type=float,
help='Clouds amount [0.0 to 100.0]')
help='Clouds amount [0.0, 100.0]')
argparser.add_argument(
'--rain', '-r',
metavar='R',
default=None,
type=float,
help='Rain amount [0.0 to 100.0]')
help='Rain amount [0.0, 100.0]')
argparser.add_argument(
'--puddles', '-pd',
metavar='Pd',
default=None,
type=float,
help='Puddles amount [0.0 to 100.0]')
help='Puddles amount [0.0, 100.0]')
argparser.add_argument(
'--wind', '-w',
metavar='W',
default=None,
type=float,
help='Wind intensity [0.0 to 100.0]')
help='Wind intensity [0.0, 100.0]')
argparser.add_argument(
'--fog', '-f',
metavar='F',
default=None,
type=float,
help='Fog intensity [0.0 to 100.0]')
help='Fog intensity [0.0, 100.0]')
argparser.add_argument(
'--fogdist', '-fd',
metavar='Fd',
default=None,
type=float,
help='Fog Distance')
help='Fog Distance [0.0, inf)')
argparser.add_argument(
'--wetness', '-wet',
metavar='Wet',
default=None,
type=float,
help='Wetness')
help='Wetness intensity [0.0, 100.0]')
args = argparser.parse_args()

# since all the arguments are None by default
Expand Down
1 change: 1 addition & 0 deletions Util/ContentVersions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@
0.9.5: 20190404_c7b464a
0.9.6: 20190710_0097e66
0.9.7: 20191221_c88604b
Latest: 20200120_9618410

0 comments on commit 7bd95e4

Please sign in to comment.