-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Description Load both OpenZT data and Zoo Tycoon Data from each .ztd, based on ztd_type in meta.toml Proposed Changes Addresses Combined OpenZT and vanilla mods #44 Adds lazy loading of resources rather than loading all resources on start (to be expanded in Unload Lazily loaded resources on load/exit or high memory usage. #51) Checklist Docs * Add documentation for combined vanilla and OpenZT mods GoosiferIO/ZooBerry-Docs#2 * Manually tested * Unit tests (where possible)
- Loading branch information
1 parent
198cf86
commit 3e2064e
Showing
14 changed files
with
1,227 additions
and
860 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name="my fun mod" | ||
description="a mod full of fun" | ||
authors=["Finn"] | ||
mod_id="finn.my_fun_mod" | ||
version="1.0.0" | ||
link="https://mywebsite.com/myfunmod" | ||
ztd_type="legacy" |
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 @@ | ||
group_imports = "StdExternalCrate" | ||
imports_granularity = "Crate" | ||
fn_call_width = 100 | ||
max_width = 167 |
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
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
Oops, something went wrong.