mirror of
https://gitlab.com/ProcyonLotor/vrchat-template.git
synced 2026-08-25 10:43:53 +05:00
Compare commits
2 Commits
0a0550fcce
...
65b1bca82b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
65b1bca82b | ||
|
|
d0fac4ebfb |
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"com.vrchat.avatars": {
|
||||
"version": "3.x"
|
||||
},
|
||||
"com.vrchat.core.vpm-resolver": {
|
||||
"version": "0.1.x"
|
||||
}
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
QualitySettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 5
|
||||
m_CurrentQuality: 2
|
||||
m_CurrentQuality: 3
|
||||
m_QualitySettings:
|
||||
- serializedVersion: 2
|
||||
name: VRC Low
|
||||
pixelLightCount: 4
|
||||
shadows: 2
|
||||
shadowResolution: 1
|
||||
shadowResolution: 2
|
||||
shadowProjection: 1
|
||||
shadowCascades: 2
|
||||
shadowDistance: 75
|
||||
@@ -58,7 +58,7 @@ QualitySettings:
|
||||
skinWeights: 4
|
||||
textureQuality: 0
|
||||
anisotropicTextures: 2
|
||||
antiAliasing: 2
|
||||
antiAliasing: 4
|
||||
softParticles: 1
|
||||
softVegetation: 1
|
||||
realtimeReflectionProbes: 1
|
||||
@@ -86,6 +86,43 @@ QualitySettings:
|
||||
shadows: 2
|
||||
shadowResolution: 3
|
||||
shadowProjection: 1
|
||||
shadowCascades: 2
|
||||
shadowDistance: 75
|
||||
shadowNearPlaneOffset: 2
|
||||
shadowCascade2Split: 0.33333334
|
||||
shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
|
||||
shadowmaskMode: 0
|
||||
skinWeights: 4
|
||||
textureQuality: 0
|
||||
anisotropicTextures: 2
|
||||
antiAliasing: 4
|
||||
softParticles: 1
|
||||
softVegetation: 1
|
||||
realtimeReflectionProbes: 1
|
||||
billboardsFaceCameraPosition: 1
|
||||
vSyncCount: 0
|
||||
lodBias: 2
|
||||
maximumLODLevel: 0
|
||||
streamingMipmapsActive: 0
|
||||
streamingMipmapsAddAllCameras: 1
|
||||
streamingMipmapsMemoryBudget: 512
|
||||
streamingMipmapsRenderersPerFrame: 512
|
||||
streamingMipmapsMaxLevelReduction: 2
|
||||
streamingMipmapsMaxFileIORequests: 1024
|
||||
particleRaycastBudget: 4096
|
||||
asyncUploadTimeSlice: 2
|
||||
asyncUploadBufferSize: 128
|
||||
asyncUploadPersistentBuffer: 1
|
||||
resolutionScalingFixedDPIFactor: 1
|
||||
customRenderPipeline: {fileID: 0}
|
||||
excludedTargetPlatforms:
|
||||
- Android
|
||||
- serializedVersion: 2
|
||||
name: VRC Ultra
|
||||
pixelLightCount: 8
|
||||
shadows: 2
|
||||
shadowResolution: 3
|
||||
shadowProjection: 1
|
||||
shadowCascades: 4
|
||||
shadowDistance: 150
|
||||
shadowNearPlaneOffset: 2
|
||||
|
||||
@@ -5,13 +5,14 @@ SETLOCAL
|
||||
CD "%~dp0"
|
||||
git rev-parse --is-inside-work-tree >NUL || GOTO die
|
||||
|
||||
ECHO The following files were changed and will be reverted:
|
||||
ECHO.
|
||||
ECHO *** WARNING: The following files were changed and will be reverted:
|
||||
git diff --name-only HEAD
|
||||
|
||||
ECHO.
|
||||
CHOICE /M "Execute"
|
||||
IF %ERRORLEVEL% NEQ 1 (
|
||||
ECHO Aborting restore...
|
||||
ECHO Aborting discard...
|
||||
) ELSE (
|
||||
git restore "%~dp0." || GOTO die
|
||||
ECHO Done.
|
||||
|
||||
@@ -5,12 +5,13 @@ repository="$(dirname "$(readlink -f "$0")")/."
|
||||
cd "${repository}"
|
||||
git rev-parse --is-inside-work-tree >/dev/null
|
||||
|
||||
echo "The following files were changed and will be reverted:"
|
||||
echo ""
|
||||
echo "*** WARNING: The following files were changed and will be reverted:"
|
||||
git diff --name-only HEAD
|
||||
|
||||
printf "\nExecute [Y,N]?"; read -r yn
|
||||
if [ "$yn" = "${yn#[Yy]}" ]; then
|
||||
echo "Aborting restore..."
|
||||
echo "Aborting discard..."
|
||||
else
|
||||
git restore "${repository}"
|
||||
echo "Done."
|
||||
|
||||
@@ -11,15 +11,24 @@ IF NOT DEFINED upstream (
|
||||
GOTO die
|
||||
)
|
||||
|
||||
git fetch --all || GOTO die
|
||||
|
||||
ECHO.
|
||||
ECHO Going to reset current branch to: %upstream%
|
||||
ECHO *** WARNING: All local changes and commits will be lost!
|
||||
|
||||
ECHO.
|
||||
ECHO *** WARNING: These local commits will be lost:
|
||||
git log "%upstream%..HEAD" --oneline
|
||||
|
||||
ECHO.
|
||||
ECHO *** WARNING: These local files will be reset:
|
||||
git diff "HEAD..%upstream%" --name-only
|
||||
|
||||
ECHO.
|
||||
CHOICE /M "Execute"
|
||||
IF %ERRORLEVEL% NEQ 1 (
|
||||
ECHO Aborting reset...
|
||||
) ELSE (
|
||||
git fetch --all || GOTO die
|
||||
git reset --hard "%upstream%" || GOTO die
|
||||
ECHO Done.
|
||||
)
|
||||
|
||||
@@ -9,8 +9,16 @@ if [ -z "$upstream" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "Going to reset current branch to: ${upstream}"
|
||||
echo "*** WARNING: All local changes and commits will be lost!"
|
||||
|
||||
echo ""
|
||||
echo "*** WARNING: These local commits will be lost:"
|
||||
git log "${upstream}..HEAD" --oneline
|
||||
|
||||
echo ""
|
||||
echo "*** WARNING: These local files will be reset:"
|
||||
git diff "HEAD..${upstream}" --name-only
|
||||
|
||||
printf "\nExecute [Y,N]?"; read -r yn
|
||||
if [ "$yn" = "${yn#[Yy]}" ]; then
|
||||
|
||||
Reference in New Issue
Block a user