-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: panorama registration option and config screen
- Loading branch information
Showing
18 changed files
with
81 additions
and
237 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 |
---|---|---|
|
@@ -24,4 +24,3 @@ earlyWindowSkipGLVersions = [] | |
maxThreads = -1 | ||
#Squir? | ||
earlyWindowSquir = false | ||
|
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,10 +1,8 @@ | ||
|
||
#Client only settings, mostly things related to rendering | ||
[client] | ||
#EXPERIMENTAL: Enable the NeoForge block rendering pipeline - fixes the lighting of custom models. | ||
experimentalForgeLightPipelineEnabled = false | ||
#When enabled, NeoForge will show any warnings that occurred during loading. | ||
showLoadWarnings = true | ||
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. | ||
useCombinedDepthStencilAttachment = false | ||
|
||
#EXPERIMENTAL: Enable the NeoForge block rendering pipeline - fixes the lighting of custom models. | ||
experimentalForgeLightPipelineEnabled = false | ||
#When enabled, NeoForge will show any warnings that occurred during loading. | ||
showLoadWarnings = true | ||
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. | ||
useCombinedDepthStencilAttachment = false | ||
#A config option mainly for developers. Logs out configuration values that do not have translations when running a client in a development environment. | ||
logUntranslatedConfigurationWarnings = true |
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,10 +1,6 @@ | ||
|
||
#General configuration settings | ||
[general] | ||
#A config option mainly for developers. Logs out modded item tags that do not have translations when running on integrated server. Format desired is tag.item.<namespace>.<path> for the translation key. Defaults to SILENCED. | ||
#Allowed Values: SILENCED, DEV_SHORT, DEV_VERBOSE, PROD_SHORT, PROD_VERBOSE | ||
logUntranslatedItemTagWarnings = "SILENCED" | ||
#A config option mainly for developers. Logs out modded tags that are using the 'forge' namespace when running on integrated server. Defaults to DEV_SHORT. | ||
#Allowed Values: SILENCED, DEV_SHORT, DEV_VERBOSE, PROD_SHORT, PROD_VERBOSE | ||
logLegacyTagWarnings = "DEV_SHORT" | ||
|
||
#A config option mainly for developers. Logs out modded item tags that do not have translations when running on integrated server. Format desired is tag.item.<namespace>.<path> for the translation key. Defaults to SILENCED. | ||
#Allowed Values: SILENCED, DEV_SHORT, DEV_VERBOSE, PROD_SHORT, PROD_VERBOSE | ||
logUntranslatedItemTagWarnings = "SILENCED" | ||
#A config option mainly for developers. Logs out modded tags that are using the 'forge' namespace when running on integrated server. Defaults to DEV_SHORT. | ||
#Allowed Values: SILENCED, DEV_SHORT, DEV_VERBOSE, PROD_SHORT, PROD_VERBOSE | ||
logLegacyTagWarnings = "DEV_SHORT" |
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,4 +1,4 @@ | ||
version:3953 | ||
version:3955 | ||
ao:true | ||
biomeBlendRadius:2 | ||
enableVsync:true | ||
|
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/0f202e000d40347127b33b6edbbb29689b8cbf86
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 @@ | ||
// 1.20.4 2024-01-20T00:47:05.7179247 Pack Metadata | ||
d80ebb5841143cd1b3ac9926dc3100ca5b1a7759 pack.mcmeta | ||
// 1.21.1 2024-10-25T14:43:36.3142406 Pack Metadata | ||
df2cdb8ffc69d6ccce673baf9fbb986751dd2ff1 pack.mcmeta |
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/222c7a37905a9e3eae8a1bd77013bedc2d6bd57a
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 @@ | ||
// 1.20.4 2024-01-20T00:47:05.7039284 Languages: en_us for mod: cumulus_menus | ||
0cb2af7dbbd8bd2ff78b335c92a753a3048b1730 assets/cumulus_menus/lang/en_us.json | ||
// 1.21.1 2024-10-25T15:07:58.2618288 Languages: en_us for mod: cumulus_menus | ||
651e807852cdb20e86bc8cbbb750b5bb89ab2473 assets/cumulus_menus/lang/en_us.json |
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 |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
"description": { | ||
"translate": "pack.cumulus_menus.mod.description" | ||
}, | ||
"pack_format": 22 | ||
"pack_format": 34 | ||
} | ||
} |
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.