https://github.com/Xisrith/StrideLOD
Working on a new LOD system for the Stride 3D game engine. Note, this repo is very volatile.
https://github.com/Xisrith/StrideLOD
Last synced: 10 months ago
JSON representation
Working on a new LOD system for the Stride 3D game engine. Note, this repo is very volatile.
- Host: GitHub
- URL: https://github.com/Xisrith/StrideLOD
- Owner: Xisrith
- Created: 2021-01-17T23:28:38.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-17T23:51:01.000Z (over 5 years ago)
- Last Synced: 2024-12-21T01:31:37.063Z (over 1 year ago)
- Language: C#
- Size: 29.8 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Awesome-Stride - LOD implementation
README
# StrideLOD
Working on a new LOD system for the Stride 3D game engine. Note, this repo is very volatile.
## Setup and Launching
Before launching you will want to change the location of the log file.
This can be done in code at FirstPersonShooter.Profiling.LoggingWriter
or in the editor under (Scene) TestScene > (Entity) Profiler > (Component) Logging Writer > (Property) Filename.
The log file will be created and populated automatically as a SQLite database file.
You can run the project from VS with the following command line options:
- `case:` - Which version of LOD to initialize, options are `lod_generic`, `lod_model`, and `static_x` where "x" is the desired number of triangles per sphere (20, 80, 320, 1080, 5120).
- `height:` - How many spheres to create in the Y direction
- `length:` - How many spheres to create in the Z direction
- `width:` - How many spheres to create in the X direction
Example arguments: `FirstPersonShooter.Windows.exe case:lod_generic height:3 lenght:10 width:10`
Upon launch, the scene will be populated from the given arguments. This behavior is controlled by the FirstPersonShooter.TestFactory class.