Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOProUnity_V2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fallenstardust
YGOProUnity_V2
Commits
4de48b10
Commit
4de48b10
authored
Sep 05, 2021
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert to 2021.1, fix
parent
88d14669
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
184 additions
and
193 deletions
+184
-193
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
Assets/ArtSystem/deckManager/MonoCardInDeckManager.cs
Assets/ArtSystem/deckManager/MonoCardInDeckManager.cs
+1
-1
Assets/NGUI/Scripts/Editor/UITexturePacker.cs
Assets/NGUI/Scripts/Editor/UITexturePacker.cs
+1
-1
Assets/SibylSystem/MonoHelpers/UIHelper.cs
Assets/SibylSystem/MonoHelpers/UIHelper.cs
+7
-1
Assets/SibylSystem/Ocgcore/OCGobjects/gameField.cs
Assets/SibylSystem/Ocgcore/OCGobjects/gameField.cs
+1
-3
Assets/SibylSystem/ResourceManagers/GameTextureManager.cs
Assets/SibylSystem/ResourceManagers/GameTextureManager.cs
+3
-3
Packages/manifest.json
Packages/manifest.json
+1
-1
Packages/packages-lock.json
Packages/packages-lock.json
+1
-1
ProjectSettings/ProjectSettings.asset
ProjectSettings/ProjectSettings.asset
+166
-179
ProjectSettings/ProjectVersion.txt
ProjectSettings/ProjectVersion.txt
+2
-2
No files found.
.gitlab-ci.yml
View file @
4de48b10
...
...
@@ -9,7 +9,7 @@ stages:
variables
:
BUILD_NAME
:
YGOPro2
UNITY_ACTIVATION_FILE
:
./unity3d.alf
UNITY_VERSION
:
"
2021.
2.0b9
"
UNITY_VERSION
:
"
2021.
1.18f1
"
IMAGE
:
unityci/editor
# https://hub.docker.com/r/unityci/editor
IMAGE_VERSION
:
"
0.15"
# https://github.com/game-ci/docker/releases
UNITY_DIR
:
$CI_PROJECT_DIR
# this needs to be an absolute path. Defaults to the root of your tree.
...
...
Assets/ArtSystem/deckManager/MonoCardInDeckManager.cs
View file @
4de48b10
...
...
@@ -7,7 +7,7 @@ public class MonoCardInDeckManager : MonoBehaviour
public
bool
dying
;
private
bool
bool_physicalON
;
private
Card
_cardData
=
new
();
private
Card
_cardData
=
new
Card
();
private
bool
died
;
private
bool
isDraging
;
...
...
Assets/NGUI/Scripts/Editor/UITexturePacker.cs
View file @
4de48b10
...
...
@@ -107,7 +107,7 @@ public class UITexturePacker
storage
[
i
].
paddingY
=
(
yPadding
!=
0
);
}
texture
.
Re
initial
ize
(
width
,
height
);
texture
.
Re
s
ize
(
width
,
height
);
texture
.
SetPixels
(
new
Color
[
width
*
height
]);
// The returned rects
...
...
Assets/SibylSystem/MonoHelpers/UIHelper.cs
View file @
4de48b10
...
...
@@ -742,7 +742,13 @@ public static class UIHelper
public
static
async
Task
<
Texture2D
>
GetTexture2DAsync
(
string
path
)
{
var
pic
=
new
Texture2D
(
0
,
0
);
pic
.
LoadImage
(
await
File
.
ReadAllBytesAsync
(
path
));
// Unity < 2021.2
var
stream
=
new
FileStream
(
path
,
FileMode
.
Open
,
FileAccess
.
Read
,
FileShare
.
Read
,
4096
,
true
);
var
data
=
new
byte
[
stream
.
Length
];
await
stream
.
ReadAsync
(
data
,
0
,
(
int
)
stream
.
Length
);
pic
.
LoadImage
(
data
);
// Unity >= 2021.2
// pic.LoadImage(await File.ReadAllBytesAsync(path));
return
pic
;
}
...
...
Assets/SibylSystem/Ocgcore/OCGobjects/gameField.cs
View file @
4de48b10
...
...
@@ -573,9 +573,7 @@ public class GameField : OCGobject
if
(
Ocgcore
.
inSkiping
)
return
;
if
(
only
)
destroy
(
big_string
);
big_string
=
create
(
Program
.
I
().
New_phase
,
Program
.
I
().
ocgcore
.
centre
(),
Vector3
.
zero
,
false
,
Program
.
I
().
ui_main_2d
,
true
,
new
Vector3
(
Screen
.
height
/
1000f
*
Program
.
fieldSize
,
Screen
.
height
/
1000f
*
Program
.
fieldSize
,
Screen
.
height
/
1000f
*
Program
.
fieldSize
));
Program
.
I
().
ui_main_2d
,
true
,
Utils
.
UIHeight
()
/
1000f
*
Program
.
fieldSize
*
Vector3
.
one
);
big_string
.
GetComponentInChildren
<
UITexture
>().
mainTexture
=
tex
;
Program
.
I
().
ocgcore
.
Sleep
(
40
);
big_string
.
AddComponent
<
animation_screen_lock2
>();
...
...
Assets/SibylSystem/ResourceManagers/GameTextureManager.cs
View file @
4de48b10
...
...
@@ -75,9 +75,9 @@ public class GameTextureManager
loadedCloseUp
.
Clear
();
}
private
static
readonly
Dictionary
<
int
,
Task
<
Texture2D
>>
loadedPicture
=
new
();
private
static
readonly
Dictionary
<
int
,
Task
<
Texture2D
>>
loadedCloseUp
=
new
();
private
static
readonly
Dictionary
<
string
,
Texture2D
>
loadedUI
=
new
();
private
static
readonly
Dictionary
<
int
,
Task
<
Texture2D
>>
loadedPicture
=
new
Dictionary
<
int
,
Task
<
Texture2D
>>
();
private
static
readonly
Dictionary
<
int
,
Task
<
Texture2D
>>
loadedCloseUp
=
new
Dictionary
<
int
,
Task
<
Texture2D
>>
();
private
static
readonly
Dictionary
<
string
,
Texture2D
>
loadedUI
=
new
Dictionary
<
string
,
Texture2D
>
();
public
static
Task
<
Texture2D
>
GetCardPicture
(
int
code
)
{
...
...
Packages/manifest.json
View file @
4de48b10
...
...
@@ -4,7 +4,7 @@
"com.unity.ide.visualstudio"
:
"2.0.11"
,
"com.unity.ide.vscode"
:
"1.2.3"
,
"com.unity.test-framework"
:
"1.1.27"
,
"com.unity.timeline"
:
"1.
6.1
"
,
"com.unity.timeline"
:
"1.
5.6
"
,
"com.unity.ugui"
:
"1.0.0"
,
"com.unity.modules.ai"
:
"1.0.0"
,
"com.unity.modules.androidjni"
:
"1.0.0"
,
...
...
Packages/packages-lock.json
View file @
4de48b10
...
...
@@ -44,7 +44,7 @@
"url"
:
"https://packages.unity.com"
},
"com.unity.timeline"
:
{
"version"
:
"1.
6.1
"
,
"version"
:
"1.
5.6
"
,
"depth"
:
0
,
"source"
:
"registry"
,
"dependencies"
:
{
...
...
ProjectSettings/ProjectSettings.asset
View file @
4de48b10
...
...
@@ -3,7 +3,7 @@
---
!u!129
&1
PlayerSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
23
serializedVersion
:
15
productGUID
:
23639be819f24d044ae93a28448a771b
AndroidProfiler
:
0
AndroidFilterTouchesWhenObscured
:
0
...
...
@@ -49,12 +49,11 @@ PlayerSettings:
m_StereoRenderingPath
:
0
m_ActiveColorSpace
:
0
m_MTRendering
:
1
mipStripping
:
0
numberOfMipsStripped
:
0
m_StackTraceTypes
:
010000000100000001000000010000000100000001000000
iosShowActivityIndicatorOnLoading
:
-1
androidShowActivityIndicatorOnLoading
:
-1
iosUseCustomAppBackgroundBehavior
:
0
iosAppInBackgroundBehavior
:
0
displayResolutionDialog
:
0
iosAllowHTTPDownload
:
1
allowedAutorotateToPortrait
:
1
allowedAutorotateToPortraitUpsideDown
:
1
...
...
@@ -64,16 +63,7 @@ PlayerSettings:
use32BitDisplayBuffer
:
1
preserveFramebufferAlpha
:
0
disableDepthAndStencilBuffers
:
0
androidStartInFullscreen
:
1
androidRenderOutsideSafeArea
:
1
androidUseSwappy
:
0
androidBlitType
:
0
androidResizableWindow
:
0
androidDefaultWindowWidth
:
1920
androidDefaultWindowHeight
:
1080
androidMinimumWindowWidth
:
400
androidMinimumWindowHeight
:
300
androidFullscreenMode
:
1
defaultIsNativeResolution
:
1
macRetinaSupport
:
1
runInBackground
:
1
...
...
@@ -87,11 +77,11 @@ PlayerSettings:
usePlayerLog
:
1
bakeCollisionMeshes
:
0
forceSingleInstance
:
0
useFlipModelSwapchain
:
1
resizableWindow
:
1
useMacAppStoreValidation
:
0
macAppStoreCategory
:
public.app-category.games
gpuSkinning
:
0
graphicsJobs
:
0
xboxPIXTextureCapture
:
0
xboxEnableAvatar
:
0
xboxEnableKinect
:
0
...
...
@@ -99,35 +89,29 @@ PlayerSettings:
xboxEnableFitness
:
0
visibleInBackground
:
0
allowFullscreenSwitch
:
1
graphicsJobMode
:
0
fullscreenMode
:
1
xboxSpeechDB
:
0
xboxEnableHeadOrientation
:
0
xboxEnableGuest
:
0
xboxEnablePIXSampling
:
0
metalFramebufferOnly
:
0
n3dsDisableStereoscopicView
:
0
n3dsEnableSharedListOpt
:
1
n3dsEnableVSync
:
0
xboxOneResolution
:
0
xboxOneSResolution
:
0
xboxOneXResolution
:
3
xboxOneMonoLoggingLevel
:
0
xboxOneLoggingLevel
:
1
xboxOneDisableEsram
:
0
xboxOneEnableTypeOptimization
:
0
xboxOnePresentImmediateThreshold
:
0
switchQueueCommandMemory
:
0
switchQueueControlMemory
:
16384
switchQueueComputeMemory
:
262144
switchNVNShaderPoolsGranularity
:
33554432
switchNVNDefaultPoolsGranularity
:
16777216
switchNVNOtherPoolsGranularity
:
16777216
switchNVNMaxPublicTextureIDCount
:
0
switchNVNMaxPublicSamplerIDCount
:
0
stadiaPresentMode
:
0
stadiaTargetFramerate
:
0
vulkanNumSwapchainBuffers
:
3
videoMemoryForVertexBuffers
:
0
psp2PowerMode
:
0
psp2AcquireBGM
:
1
vulkanEnableSetSRGBWrite
:
0
vulkanEnablePreTransform
:
0
vulkanEnableLateAcquireNextImage
:
0
vulkanEnableCommandBufferRecycling
:
1
vulkanUseSWCommandBuffers
:
0
m_SupportedAspectRatios
:
4:3:
1
5:4:
1
...
...
@@ -141,12 +125,27 @@ PlayerSettings:
m_HolographicPauseOnTrackingLoss
:
1
xboxOneDisableKinectGpuReservation
:
0
xboxOneEnable7thCore
:
0
isWsaHolographicRemotingEnabled
:
0
vrSettings
:
cardboard
:
depthFormat
:
0
enableTransitionView
:
0
daydream
:
depthFormat
:
0
useSustainedPerformanceMode
:
0
enableVideoLayer
:
0
useProtectedVideoMemory
:
0
minimumSupportedHeadTracking
:
0
maximumSupportedHeadTracking
:
1
hololens
:
depthFormat
:
1
depthBufferSharingEnabled
:
0
oculus
:
sharedDepthBuffer
:
0
dashSupport
:
0
enable360StereoCapture
:
0
isWsaHolographicRemotingEnabled
:
0
enableFrameTimingStats
:
0
protectGraphicsMemory
:
0
useHDRDisplay
:
0
D3DHDRBitDepth
:
0
m_ColorGamuts
:
00000000
targetPixelDensity
:
30
resolutionScalingMode
:
0
...
...
@@ -154,17 +153,14 @@ PlayerSettings:
androidMaxAspectRatio
:
2.1
applicationIdentifier
:
Android
:
com.YGOPro2.YGOPro2
Standalone
:
com
.YGOPro2.YGOPro2
Standalone
:
unity
.YGOPro2.YGOPro2
Tizen
:
com.YGOPro2.YGOPro2
i
Phone
:
com.YGOPro2.YGOPro2
i
OS
:
com.YGOPro2.YGOPro2
tvOS
:
com.YGOPro2.YGOPro2
buildNumber
:
Standalone
:
0
iPhone
:
0
tvOS
:
0
overrideDefaultApplicationIdentifier
:
0
iOS
:
AndroidBundleVersionCode
:
1
AndroidMinSdkVersion
:
22
AndroidMinSdkVersion
:
16
AndroidTargetSdkVersion
:
0
AndroidPreferredInstallLocation
:
1
aotOptions
:
...
...
@@ -179,16 +175,28 @@ PlayerSettings:
StripUnusedMeshComponents
:
0
VertexChannelCompressionMask
:
214
iPhoneSdkVersion
:
988
iOSTargetOSVersionString
:
11
.0
iOSTargetOSVersionString
:
8
.0
tvOSSdkVersion
:
0
tvOSRequireExtendedGameController
:
0
tvOSTargetOSVersionString
:
11
.0
tvOSTargetOSVersionString
:
9
.0
uIPrerenderedIcon
:
0
uIRequiresPersistentWiFi
:
0
uIRequiresFullScreen
:
1
uIStatusBarHidden
:
1
uIExitOnSuspend
:
0
uIStatusBarStyle
:
0
iPhoneSplashScreen
:
{
fileID
:
0
}
iPhoneHighResSplashScreen
:
{
fileID
:
0
}
iPhoneTallHighResSplashScreen
:
{
fileID
:
0
}
iPhone47inSplashScreen
:
{
fileID
:
0
}
iPhone55inPortraitSplashScreen
:
{
fileID
:
0
}
iPhone55inLandscapeSplashScreen
:
{
fileID
:
0
}
iPhone58inPortraitSplashScreen
:
{
fileID
:
0
}
iPhone58inLandscapeSplashScreen
:
{
fileID
:
0
}
iPadPortraitSplashScreen
:
{
fileID
:
0
}
iPadHighResPortraitSplashScreen
:
{
fileID
:
0
}
iPadLandscapeSplashScreen
:
{
fileID
:
0
}
iPadHighResLandscapeSplashScreen
:
{
fileID
:
0
}
appleTVSplashScreen
:
{
fileID
:
0
}
appleTVSplashScreen2x
:
{
fileID
:
0
}
tvOSSmallIconLayers
:
[]
...
...
@@ -216,17 +224,15 @@ PlayerSettings:
iOSLaunchScreeniPadFillPct
:
100
iOSLaunchScreeniPadSize
:
100
iOSLaunchScreeniPadCustomXibPath
:
iOSUseLaunchScreenStoryboard
:
0
iOSLaunchScreenCustomStoryboardPath
:
iOSLaunchScreeniPadCustomStoryboardPath
:
iOSDeviceRequirements
:
[]
iOSURLSchemes
:
[]
macOSURLSchemes
:
[]
iOSBackgroundModes
:
0
iOSMetalForceHardShadows
:
0
metalEditorSupport
:
1
metalAPIValidation
:
1
iOSRenderExtraFrameOnPause
:
1
iosCopyPluginsCodeInsteadOfSymlink
:
0
appleDeveloperTeamID
:
iOSManualSigningProvisioningProfileID
:
tvOSManualSigningProvisioningProfileID
:
...
...
@@ -234,24 +240,15 @@ PlayerSettings:
tvOSManualSigningProvisioningProfileType
:
0
appleEnableAutomaticSigning
:
0
iOSRequireARKit
:
0
iOSAutomaticallyDetectAndAddCapabilities
:
1
appleEnableProMotion
:
0
shaderPrecisionModel
:
0
vulkanEditorSupport
:
0
clonedFromGUID
:
00000000000000000000000000000000
templatePackageId
:
templateDefaultScene
:
useCustomMainManifest
:
0
useCustomLauncherManifest
:
0
useCustomMainGradleTemplate
:
0
useCustomLauncherGradleManifest
:
0
useCustomBaseGradleTemplate
:
0
useCustomGradlePropertiesTemplate
:
0
useCustomProguardFile
:
0
AndroidTargetArchitectures
:
5
AndroidTargetDevices
:
0
AndroidSplashScreenScale
:
0
androidSplashScreen
:
{
fileID
:
0
}
AndroidKeystoreName
:
'
{inproject}:
'
AndroidKeystoreName
:
AndroidKeyaliasName
:
AndroidBuildApkPerCpuArchitecture
:
0
AndroidTVCompatibility
:
1
...
...
@@ -259,79 +256,64 @@ PlayerSettings:
AndroidEnableTango
:
0
androidEnableBanner
:
1
androidUseLowAccuracyLocation
:
0
androidUseCustomKeystore
:
0
m_AndroidBanners
:
-
width
:
320
height
:
180
banner
:
{
fileID
:
0
}
androidGamepadSupportLevel
:
0
chromeosInputEmulation
:
1
AndroidMinifyWithR8
:
0
AndroidMinifyRelease
:
0
AndroidMinifyDebug
:
0
AndroidValidateAppBundleSize
:
1
AndroidAppBundleSizeToValidate
:
150
resolutionDialogBanner
:
{
fileID
:
0
}
m_BuildTargetIcons
:
-
m_BuildTarget
:
m_Icons
:
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
0
}
m_Width
:
128
m_Height
:
128
m_Kind
:
0
-
m_BuildTarget
:
Standalone
m_Icons
:
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
2800000
,
guid
:
5b0fb958937e09c4fb59b92c51c6bc35
,
type
:
3
}
m_Width
:
1024
m_Height
:
1024
m_Kind
:
0
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
0
}
m_Width
:
512
m_Height
:
512
m_Kind
:
0
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
0
}
m_Width
:
256
m_Height
:
256
m_Kind
:
0
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
2800000
,
guid
:
5b0fb958937e09c4fb59b92c51c6bc35
,
type
:
3
}
m_Width
:
128
m_Height
:
128
m_Kind
:
0
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
2800000
,
guid
:
5b0fb958937e09c4fb59b92c51c6bc35
,
type
:
3
}
m_Width
:
48
m_Height
:
48
m_Kind
:
0
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
0
}
m_Width
:
32
m_Height
:
32
m_Kind
:
0
-
serializedVersion
:
2
m_Icon
:
{
fileID
:
0
}
m_Width
:
16
m_Height
:
16
m_Kind
:
0
m_BuildTargetPlatformIcons
:
[]
m_BuildTargetBatching
:
[]
m_BuildTargetGraphicsJobs
:
-
m_BuildTarget
:
MacStandaloneSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
Switch
m_GraphicsJobs
:
0
-
m_BuildTarget
:
MetroSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
GameCoreScarlettSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
AppleTVSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
BJMSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
LinuxStandaloneSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
GameCoreXboxOneSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
PS4Player
m_GraphicsJobs
:
0
-
m_BuildTarget
:
iOSSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
PS5Player
m_GraphicsJobs
:
0
-
m_BuildTarget
:
WindowsStandaloneSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
XboxOnePlayer
m_GraphicsJobs
:
0
-
m_BuildTarget
:
LuminSupport
m_GraphicsJobs
:
0
-
m_BuildTarget
:
CloudRendering
m_GraphicsJobs
:
0
-
m_BuildTarget
:
AndroidPlayer
m_GraphicsJobs
:
0
-
m_BuildTarget
:
WebGLSupport
m_GraphicsJobs
:
0
m_BuildTargetGraphicsJobMode
:
-
m_BuildTarget
:
PS4Player
m_GraphicsJobMode
:
0
-
m_BuildTarget
:
XboxOnePlayer
m_GraphicsJobMode
:
0
m_BuildTargetGraphicsAPIs
:
-
m_BuildTarget
:
iOSSupport
m_APIs
:
10000000
m_Automatic
:
1
-
m_BuildTarget
:
AndroidPlayer
m_APIs
:
0b00000008000000
m_Automatic
:
0
m_BuildTargetGraphicsAPIs
:
[]
m_BuildTargetVRSettings
:
[]
m_BuildTargetEnableVuforiaSettings
:
[]
openGLRequireES31
:
0
openGLRequireES31AEP
:
0
openGLRequireES32
:
0
m_TemplateCustomTags
:
{}
mobileMTRendering
:
iPhone
:
1
...
...
@@ -344,8 +326,6 @@ PlayerSettings:
-
m_BuildTarget
:
PS4
m_EncodingQuality
:
1
m_BuildTargetGroupLightmapSettings
:
[]
m_BuildTargetNormalMapEncoding
:
[]
m_BuildTargetDefaultTextureCompressionFormat
:
[]
playModeTestRunnerEnabled
:
0
runPlayModeTestAsEditModeTest
:
0
actionOnDotNetUnhandledException
:
1
...
...
@@ -355,16 +335,12 @@ PlayerSettings:
cameraUsageDescription
:
locationUsageDescription
:
microphoneUsageDescription
:
bluetoothUsageDescription
:
switchNMETAOverride
:
switchNetLibKey
:
switchSocketMemoryPoolSize
:
6144
switchSocketAllocatorPoolSize
:
128
switchSocketConcurrencyLimit
:
14
switchScreenResolutionBehavior
:
2
switchUseCPUProfiler
:
0
switchUseGOLDLinker
:
0
switchLTOSetting
:
0
switchApplicationID
:
0x01004b9000490000
switchNSODependencies
:
switchTitleNames_0
:
...
...
@@ -382,7 +358,6 @@ PlayerSettings:
switchTitleNames_12
:
switchTitleNames_13
:
switchTitleNames_14
:
switchTitleNames_15
:
switchPublisherNames_0
:
switchPublisherNames_1
:
switchPublisherNames_2
:
...
...
@@ -398,7 +373,6 @@ PlayerSettings:
switchPublisherNames_12
:
switchPublisherNames_13
:
switchPublisherNames_14
:
switchPublisherNames_15
:
switchIcons_0
:
{
fileID
:
0
}
switchIcons_1
:
{
fileID
:
0
}
switchIcons_2
:
{
fileID
:
0
}
...
...
@@ -414,7 +388,6 @@ PlayerSettings:
switchIcons_12
:
{
fileID
:
0
}
switchIcons_13
:
{
fileID
:
0
}
switchIcons_14
:
{
fileID
:
0
}
switchIcons_15
:
{
fileID
:
0
}
switchSmallIcons_0
:
{
fileID
:
0
}
switchSmallIcons_1
:
{
fileID
:
0
}
switchSmallIcons_2
:
{
fileID
:
0
}
...
...
@@ -430,7 +403,6 @@ PlayerSettings:
switchSmallIcons_12
:
{
fileID
:
0
}
switchSmallIcons_13
:
{
fileID
:
0
}
switchSmallIcons_14
:
{
fileID
:
0
}
switchSmallIcons_15
:
{
fileID
:
0
}
switchManualHTML
:
switchAccessibleURLs
:
switchLegalInformation
:
...
...
@@ -462,7 +434,6 @@ PlayerSettings:
switchRatingsInt_9
:
0
switchRatingsInt_10
:
0
switchRatingsInt_11
:
0
switchRatingsInt_12
:
0
switchLocalCommunicationIds_0
:
switchLocalCommunicationIds_1
:
switchLocalCommunicationIds_2
:
...
...
@@ -477,7 +448,6 @@ PlayerSettings:
switchAllowsRuntimeAddOnContentInstall
:
0
switchDataLossConfirmation
:
0
switchUserAccountLockEnabled
:
0
switchSystemResourceMemory
:
16777216
switchSupportedNpadStyles
:
3
switchNativeFsCacheSize
:
32
switchIsHoldTypeHorizontal
:
0
...
...
@@ -493,11 +463,6 @@ PlayerSettings:
switchSocketInitializeEnabled
:
1
switchNetworkInterfaceManagerInitializeEnabled
:
1
switchPlayerConnectionEnabled
:
1
switchUseNewStyleFilepaths
:
0
switchUseMicroSleepForYield
:
1
switchEnableRamDiskSupport
:
0
switchMicroSleepForYieldTime
:
25
switchRamDiskSpaceSize
:
12
ps4NPAgeRating
:
12
ps4NPTitleSecret
:
ps4NPTrophyPackPath
:
...
...
@@ -524,7 +489,6 @@ PlayerSettings:
ps4ShareFilePath
:
ps4ShareOverlayImagePath
:
ps4PrivacyGuardImagePath
:
ps4ExtraSceSysFile
:
ps4NPtitleDatPath
:
ps4RemotePlayKeyAssignment
:
-1
ps4RemotePlayKeyMappingDir
:
...
...
@@ -537,7 +501,6 @@ PlayerSettings:
ps4DownloadDataSize
:
0
ps4GarlicHeapSize
:
2048
ps4ProGarlicHeapSize
:
2560
playerPrefsMaxSize
:
32768
ps4Passcode
:
frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
ps4pnSessions
:
1
ps4pnPresence
:
1
...
...
@@ -545,12 +508,10 @@ PlayerSettings:
ps4pnGameCustomData
:
1
playerPrefsSupport
:
0
enableApplicationExit
:
0
resetTempFolder
:
1
restrictedAudioUsageRights
:
0
ps4UseResolutionFallback
:
0
ps4ReprojectionSupport
:
0
ps4UseAudio3dBackend
:
0
ps4UseLowGarlicFragmentationMode
:
1
ps4SocialScreenEnabled
:
0
ps4ScriptOptimizationLevel
:
3
ps4Audio3dVirtualSpeakerCount
:
14
...
...
@@ -567,15 +528,58 @@ PlayerSettings:
ps4disableAutoHideSplash
:
0
ps4videoRecordingFeaturesUsed
:
0
ps4contentSearchFeaturesUsed
:
0
ps4CompatibilityPS5
:
0
ps4GPU800MHz
:
1
ps4attribEyeToEyeDistanceSettingVR
:
0
ps4IncludedModules
:
[]
ps4attribVROutputEnabled
:
0
monoEnv
:
psp2Splashimage
:
{
fileID
:
0
}
psp2NPTrophyPackPath
:
psp2NPSupportGBMorGJP
:
0
psp2NPAgeRating
:
12
psp2NPTitleDatPath
:
psp2NPCommsID
:
psp2NPCommunicationsID
:
psp2NPCommsPassphrase
:
psp2NPCommsSig
:
psp2ParamSfxPath
:
psp2ManualPath
:
psp2LiveAreaGatePath
:
psp2LiveAreaBackroundPath
:
psp2LiveAreaPath
:
psp2LiveAreaTrialPath
:
psp2PatchChangeInfoPath
:
psp2PatchOriginalPackage
:
psp2PackagePassword
:
F69AzBlax3CF3EDNhm3soLBPh71Yexui
psp2KeystoneFile
:
psp2MemoryExpansionMode
:
0
psp2DRMType
:
0
psp2StorageType
:
0
psp2MediaCapacity
:
0
psp2DLCConfigPath
:
psp2ThumbnailPath
:
psp2BackgroundPath
:
psp2SoundPath
:
psp2TrophyCommId
:
psp2TrophyPackagePath
:
psp2PackagedResourcesPath
:
psp2SaveDataQuota
:
10240
psp2ParentalLevel
:
1
psp2ShortTitle
:
Not Set
psp2ContentID
:
IV0000-ABCD12345_00-0123456789ABCDEF
psp2Category
:
0
psp2MasterVersion
:
01.00
psp2AppVersion
:
01.00
psp2TVBootMode
:
0
psp2EnterButtonAssignment
:
2
psp2TVDisableEmu
:
0
psp2AllowTwitterDialog
:
1
psp2Upgradable
:
0
psp2HealthWarning
:
0
psp2UseLibLocation
:
0
psp2InfoBarOnStartup
:
0
psp2InfoBarColor
:
0
psp2ScriptOptimizationLevel
:
2
splashScreenBackgroundSourceLandscape
:
{
fileID
:
0
}
splashScreenBackgroundSourcePortrait
:
{
fileID
:
0
}
blurSplashScreenBackground
:
1
spritePackerPolicy
:
webGLMemorySize
:
256
webGLExceptionSupport
:
1
...
...
@@ -588,37 +592,26 @@ PlayerSettings:
webGLAnalyzeBuildSize
:
0
webGLUseEmbeddedResources
:
0
webGLCompressionFormat
:
1
webGLWasmArithmeticExceptions
:
0
webGLLinkerTarget
:
1
webGLThreadsSupport
:
0
webGLDecompressionFallback
:
0
scriptingDefineSymbols
:
Standalone
:
additionalCompilerArguments
:
{}
1
:
platformArchitecture
:
i
Phone
:
1
i
OS
:
2
scriptingBackend
:
Metro
:
2
Standalone
:
0
WP8
:
2
WebGL
:
1
WebPlayer
:
0
Windows Store Apps
:
2
iPhone
:
1
iOS
:
1
il2cppCompilerConfiguration
:
{}
managedStrippingLevel
:
{}
incrementalIl2cppBuild
:
iPhone
:
0
suppressCommonWarnings
:
1
iOS
:
0
allowUnsafeCode
:
1
useDeterministicCompilation
:
1
enableRoslynAnalyzers
:
1
additionalIl2CppArgs
:
scriptingRuntimeVersion
:
1
gcIncremental
:
1
assemblyVersionValidation
:
1
gcWBarrierValidation
:
0
scriptingRuntimeVersion
:
0
apiCompatibilityLevelPerPlatform
:
Standalone
:
6
Standalone
:
1
m_RenderingPath
:
1
m_MobileRenderingPath
:
1
metroPackageName
:
ygofroge
...
...
@@ -635,18 +628,27 @@ PlayerSettings:
metroMediumTileShowName
:
0
metroLargeTileShowName
:
0
metroWideTileShowName
:
0
metroSupportStreamingInstall
:
0
metroLastRequiredScene
:
0
metroDefaultTileSize
:
1
metroTileForegroundText
:
1
metroTileBackgroundColor
:
{
r
:
0
,
g
:
0
,
b
:
0
,
a
:
1
}
metroSplashScreenBackgroundColor
:
{
r
:
0
,
g
:
0
,
b
:
0
,
a
:
1
}
metroSplashScreenUseBackgroundColor
:
0
platformCapabilities
:
{}
metroTargetDeviceFamilies
:
{}
metroFTAName
:
metroFTAFileTypes
:
[]
metroProtocolName
:
metroCompilationOverrides
:
1
n3dsUseExtSaveData
:
0
n3dsCompressStaticMem
:
1
n3dsExtSaveDataNumber
:
0x12345
n3dsStackSize
:
131072
n3dsTargetPlatform
:
2
n3dsRegion
:
7
n3dsMediaSize
:
0
n3dsLogoStyle
:
3
n3dsTitle
:
GameName
n3dsProductCode
:
n3dsApplicationId
:
0xFF3FF
XboxOneProductId
:
XboxOneUpdateKey
:
XboxOneSandboxId
:
...
...
@@ -665,38 +667,23 @@ PlayerSettings:
XboxOneCapability
:
[]
XboxOneGameRating
:
{}
XboxOneIsContentPackage
:
0
XboxOneEnhancedXboxCompatibilityMode
:
0
XboxOneEnableGPUVariability
:
0
XboxOneSockets
:
{}
XboxOneSplashScreen
:
{
fileID
:
0
}
XboxOneAllowedProductIds
:
[]
XboxOnePersistentLocalStorageSize
:
0
XboxOneXTitleMemory
:
8
XboxOneOverrideIdentityName
:
XboxOneOverrideIdentityPublisher
:
vrEditorSettings
:
{}
xboxOneScriptCompiler
:
0
vrEditorSettings
:
daydream
:
daydreamIconForeground
:
{
fileID
:
0
}
daydreamIconBackground
:
{
fileID
:
0
}
cloudServicesEnabled
:
{}
luminIcon
:
m_Name
:
m_ModelFolderPath
:
m_PortalFolderPath
:
luminCert
:
m_CertPath
:
m_SignPackage
:
1
luminIsChannelApp
:
0
luminVersion
:
m_VersionCode
:
1
m_VersionName
:
apiCompatibilityLevel
:
6
activeInputHandler
:
0
facebookSdkVersion
:
7.9.1
apiCompatibilityLevel
:
2
cloudProjectId
:
framebufferDepthMemorylessMode
:
0
qualitySettingsNames
:
[]
projectName
:
organizationId
:
cloudEnabled
:
0
legacyClampBlendShapeWeights
:
1
playerDataPath
:
forceSRGBBlit
:
1
virtualTexturingSupportEnabled
:
0
uploadClearedTextureDataAfterCreationFromScript
:
1
enableNativePlatformBackendsForNewInputSystem
:
0
disableOldInputManagerSupport
:
0
ProjectSettings/ProjectVersion.txt
View file @
4de48b10
m_EditorVersion: 2021.
2.0b9
m_EditorVersionWithRevision: 2021.
2.0b9 (162b5e238388
)
m_EditorVersion: 2021.
1.18f1
m_EditorVersionWithRevision: 2021.
1.18f1 (25bdc3efbc2d
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment