Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/DabrovicSponza
An attempt at rendering the "Dabrovic Sponza" scene with Unity.
https://github.com/keijiro/DabrovicSponza
global-illumination unity unity3d
Last synced: 7 days ago
JSON representation
An attempt at rendering the "Dabrovic Sponza" scene with Unity.
- Host: GitHub
- URL: https://github.com/keijiro/DabrovicSponza
- Owner: keijiro
- License: other
- Created: 2017-04-15T13:25:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-07T12:30:21.000Z (over 4 years ago)
- Last Synced: 2024-10-31T19:51:26.826Z (13 days ago)
- Topics: global-illumination, unity, unity3d
- Size: 30.9 MB
- Stars: 62
- Watchers: 7
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Dabrovic Sponza
===============![screenshot](http://i.imgur.com/stPvCV7.png)
**Dabrovic Sponza** is a Unity package containing the "Dabrovic Sponza"
architectural model, which the computer graphics community frequently used as a
test model.Marko Dabrovic created the original model. Kenzie Lamar at Vicarious Visions
converted the 3DS file to OBJ and assigned texture coordinates to the ceilings.
Morgan McGuire hand-painted bump maps for most surfaces.You can obtain the original model from the following page:
http://hdri.cgtechniques.com/~sponza/files/
Also you can obtain the refined model from McGuire's archive:
https://casual-effects.com/data/
How To Install
--------------The Dabrovic Sponza package uses the [scoped registry] feature to import
dependent packages. Please add the following sections to the package manifest
file (`Packages/manifest.json`).To the `scopedRegistries` section:
```
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
```To the `dependencies` section:
```
"jp.keijiro.dabrovic-sponza": "1.0.0"
```After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.dabrovic-sponza": "1.0.0",
...
```[scoped registry]: https://docs.unity3d.com/Manual/upm-scoped.html