-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored some of the road textures.
Fixed the batch files. Added _pycache to git ignore.
- Loading branch information
Showing
31 changed files
with
75 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/app/assets | ||
/app/__pycache__ | ||
/app/bin | ||
/app/bin | ||
/bin/harfang/__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
app\bin\harfang\assetc\assetc.exe app\resources app\assets | ||
bin\assetc\assetc.exe app\resources app\assets | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
cd app | ||
python main.py | ||
..\bin\python\python.exe main.py | ||
pause |
Empty file.
Empty file.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-240 KB
app/resources/road_blocks/block_highway_turn_in/diffuse_cement_dirty_03.png
Binary file not shown.
Binary file removed
BIN
-659 KB
app/resources/road_blocks/block_highway_turn_in/diffuse_middle_wall.png
Binary file not shown.
Binary file removed
BIN
-305 KB
app/resources/road_blocks/block_highway_turn_in/diffuse_road_sides.png
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-64.1 KB
app/resources/road_blocks/block_highway_turn_in/spec_cement_dirty_03.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-291 KB
app/resources/road_blocks/block_highway_turn_out/diffuse_blank_field_tile.png
Binary file not shown.
Binary file removed
BIN
-240 KB
app/resources/road_blocks/block_highway_turn_out/diffuse_cement_dirty_03.png
Binary file not shown.
Binary file removed
BIN
-659 KB
app/resources/road_blocks/block_highway_turn_out/diffuse_middle_wall.png
Binary file not shown.
Binary file removed
BIN
-305 KB
app/resources/road_blocks/block_highway_turn_out/diffuse_road_sides.png
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-64.1 KB
app/resources/road_blocks/block_highway_turn_out/spec_cement_dirty_03.png
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-85.5 KB
app/resources/road_blocks/block_highway_turn_out/spec_metal_red.png
Binary file not shown.
Binary file removed
BIN
-503 KB
app/resources/road_blocks/block_highway_turn_out/spec_road_sides.png
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Run in standalone mode | ||
|
||
The `bin\` includes several external modules allowing this project to run as a standalone application (on Windows especially). | ||
|
||
The `bin\`folder includes several other folders: | ||
* `assetc\`, the [HARFANG asset compiler](https://www.harfang3d.com/releases). | ||
* `harfang\`, the [HARFANG engine](https://www.harfang3d.com/releases) (unpacked wheel). | ||
* `python\`, Python (3.8, 3.9, 3.10) [Windows embeddable package](https://www.python.org/downloads/release/python-383/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Run in standalone mode | ||
|
||
## Content of bin\assetc | ||
|
||
**On Windows** | ||
|
||
``` | ||
toolchains\ | ||
assetc.exe | ||
glfw3.dll | ||
harfang.dll | ||
lua.exe | ||
lua53.dll | ||
``` | ||
|
||
**On Linux** | ||
|
||
``` | ||
toolchains\ | ||
assetc | ||
libglfw3.so | ||
liblua53.so | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Run in standalone mode | ||
|
||
## Content of bin\harfang | ||
|
||
``` | ||
glfw3.dll | ||
harfang.pyd | ||
lua53.dll | ||
openvr_api.dll | ||
__init__.py | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
python38.zip | ||
. | ||
..\ | ||
..\harfang\ | ||
..\..\app\ | ||
|
||
# Uncomment to run site.main() automatically | ||
#import site | ||
|