Skip to content

Commit

Permalink
Fixed the invocation to assetc.
Browse files Browse the repository at this point in the history
Bumped version number.
  • Loading branch information
astrofra committed Aug 14, 2023
1 parent 405c3f7 commit 473db28
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bdist_wheel/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1
2 changes: 1 addition & 1 deletion samples/1-Window2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down
2 changes: 1 addition & 1 deletion samples/2-Window3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down
2 changes: 1 addition & 1 deletion samples/3-Window3D_and_Window2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down
2 changes: 1 addition & 1 deletion samples/4-VR_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down
2 changes: 1 addition & 1 deletion samples/5-VR_window_and_window2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down
2 changes: 1 addition & 1 deletion samples/6-Full_widgets_2D_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down
2 changes: 1 addition & 1 deletion samples/7-Full_widgets_3D_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Build the assets locally

harfang.bin.assetc(path.join(get_assets_path(), 'assets', '-quiet'), 'assets_compiled')
harfang.bin.assetc(path.join(get_assets_path(), 'assets'), 'assets_compiled', '-quiet')

# Init Harfang

Expand Down

0 comments on commit 473db28

Please sign in to comment.