-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Asset management reimplementation (#11)
* Removed all resources code, lul. * Made Asset generic and sealed. * Sketched most of the design. * Fixed many things about FileSystemAssetSource. * AssemblyResourcesAssetSource class * Added BuiltInAssets asset source. * Renames * Immediate loading sketch. * Autoloading asset readers, + documentation + fixes. * Allowed readers to use asterisks to accept all extensions. * Fixed 2 typos. * Renamed Resources to Assets * Asset.FromValue -> Assets.CreateUntracked * Asset & Assets Documentation, renames. * Fixed the rendering pipeline not requesting assets correctly. * Assets.Exists, + documentation templates. * Assets.TryGet + relative path overloads, internalized AssetLookup registration. * Oops, fixes for the previous commit. * Support for HJSON in materials and shaders. * Asynchronous asset loading! * Updated AudioSource to use asset references correctly. * Many threading fixes, switched to ImageSharp in favor of DevIL. * Fixed AudioSource clips not getting requested. * Fixed random texture corruption. * Unhardcoded reader registration with another kind of hardcode.
- Loading branch information
Showing
76 changed files
with
1,411 additions
and
1,213 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
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
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
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,6 +1,6 @@ | ||
{ | ||
"Debug": { | ||
"vertexShader": "Shaders/Debug/Debug.vert", | ||
"fragmentShader": "Shaders/Debug/Debug.frag" | ||
"vertexShader": "BuiltInAssets/Shaders/Debug/Debug.vert", | ||
"fragmentShader": "BuiltInAssets/Shaders/Debug/Debug.frag" | ||
} | ||
} |
Oops, something went wrong.