게임 아이콘 추가 및 윈도우 빌드 프로필 추가 후 빌드
This commit is contained in:
@@ -4,7 +4,6 @@ using SFB;
|
|||||||
|
|
||||||
public class DirectorySelect : MonoBehaviour
|
public class DirectorySelect : MonoBehaviour
|
||||||
{
|
{
|
||||||
const string BASIC_DIRECTORY = "C://";
|
|
||||||
public string selectedFolderPath;
|
public string selectedFolderPath;
|
||||||
|
|
||||||
// OS별 기본 경로를 const 대신 static readonly 또는 private 필드로 정의
|
// OS별 기본 경로를 const 대신 static readonly 또는 private 필드로 정의
|
||||||
@@ -44,81 +43,8 @@ public class DirectorySelect : MonoBehaviour
|
|||||||
|
|
||||||
public void Search()
|
public void Search()
|
||||||
{
|
{
|
||||||
// 1. 깃허브 UnityStandaloneFileBrowser 에셋 방식 // https://github.com/tonidurans/UnityStandaloneFileBrowser/tree/master/Package
|
// 깃허브 UnityStandaloneFileBrowser 에셋 방식 // https://github.com/tonidurans/UnityStandaloneFileBrowser/tree/master/Package
|
||||||
StandaloneFileBrowser.OpenFolderPanelAsync("디렉토리 선택", inputDirectory.text, false, OnSelect);
|
StandaloneFileBrowser.OpenFolderPanelAsync("디렉토리 선택", inputDirectory.text, false, OnSelect);
|
||||||
|
|
||||||
// 2. 유니티 에디터 자체 기능 사용 (게임 빌드했을때 정상 작동하지 않음)
|
|
||||||
// string path = EditorUtility.OpenFolderPanel("디렉토리 선택", inputDirectory.text, "");
|
|
||||||
//
|
|
||||||
// // 사용자가 취소를 누르지 않고 유효한 경로를 선택했을 때만 업데이트
|
|
||||||
// if (!string.IsNullOrEmpty(path))
|
|
||||||
// {
|
|
||||||
// inputDirectory.text = path;
|
|
||||||
// selectedFolderPath = inputDirectory.text;
|
|
||||||
// Debug.Log("선택된 경로: " + selectedFolderPath);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// 3. DLL 라이브러리 방식
|
|
||||||
// // Windows
|
|
||||||
// if (UnityEngine.Application.platform == RuntimePlatform.WindowsPlayer ||
|
|
||||||
// UnityEngine.Application.platform == RuntimePlatform.WindowsEditor)
|
|
||||||
// {
|
|
||||||
// FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog();
|
|
||||||
// folderBrowserDialog.Description = "디렉토리 선택";
|
|
||||||
//
|
|
||||||
// if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
|
|
||||||
// {
|
|
||||||
// selectedFolderPath = folderBrowserDialog.SelectedPath;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // macOS (OSX) 및 Linux
|
|
||||||
// else if (UnityEngine.Application.platform == RuntimePlatform.OSXPlayer ||
|
|
||||||
// UnityEngine.Application.platform == RuntimePlatform.OSXEditor ||
|
|
||||||
// UnityEngine.Application.platform == RuntimePlatform.LinuxPlayer ||
|
|
||||||
// UnityEngine.Application.platform == RuntimePlatform.LinuxEditor)
|
|
||||||
// {
|
|
||||||
// // 1. OpenFolderPanelAsync를 사용하여 폴더 선택 팝업을 띄웁니다.
|
|
||||||
// // 비동기 방식이므로, 팝업이 닫힐 때 실행될 콜백 함수를 인자로 넘깁니다.
|
|
||||||
// StandaloneFileBrowser.OpenFolderPanelAsync(
|
|
||||||
// "경로를 선택하세요", // 팝업 창 제목
|
|
||||||
// inputDirectory.text, // 시작 경로: 현재 inputField의 경로를 기본값으로 사용
|
|
||||||
// false, // 다중 선택 허용 여부 (false: 폴더 1개만 선택)
|
|
||||||
// (string[] paths) => {
|
|
||||||
// // 2. 팝업이 닫힌 후 실행되는 콜백 함수 (람다 표현식)
|
|
||||||
// if (paths.Length > 0 && !string.IsNullOrEmpty(paths[0]))
|
|
||||||
// {
|
|
||||||
// // 선택된 경로가 있다면
|
|
||||||
// selectedFolderPath = paths[0];
|
|
||||||
//
|
|
||||||
// // InputField에 선택된 경로를 업데이트합니다.
|
|
||||||
// if (inputDirectory != null)
|
|
||||||
// {
|
|
||||||
// inputDirectory.text = selectedFolderPath;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// Debug.Log("선택된 폴더 경로: " + selectedFolderPath);
|
|
||||||
// }
|
|
||||||
// else
|
|
||||||
// {
|
|
||||||
// // 선택 취소됨
|
|
||||||
// Debug.Log("폴더 선택이 취소되었습니다.");
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
// else
|
|
||||||
// {
|
|
||||||
// // 기타 플랫폼 (예: WebGL, Android, iOS)
|
|
||||||
// // macOS/Linux와 동일한 경로를 기본값으로 사용하거나,
|
|
||||||
// // 해당 플랫폼에 맞는 다른 경로를 반환할 수 있습니다.
|
|
||||||
// // return MAC_LINUX_DIRECTORY;
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update is called once per frame
|
|
||||||
void Update()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
8
Assets/Settings/Build Profiles.meta
Normal file
8
Assets/Settings/Build Profiles.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 091a824e25c0b59489093755fb9224e6
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
778
Assets/Settings/Build Profiles/Windows.asset
Normal file
778
Assets/Settings/Build Profiles/Windows.asset
Normal file
@@ -0,0 +1,778 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 15003, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name: Windows
|
||||||
|
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.Build.Profile.BuildProfile
|
||||||
|
m_AssetVersion: 1
|
||||||
|
m_BuildTarget: 19
|
||||||
|
m_Subtarget: 2
|
||||||
|
m_PlatformId: 4e3c793746204150860bf175a9a41a05
|
||||||
|
m_PlatformBuildProfile:
|
||||||
|
rid: 1527313263111700547
|
||||||
|
m_OverrideGlobalSceneList: 0
|
||||||
|
m_Scenes: []
|
||||||
|
m_ScriptingDefines: []
|
||||||
|
m_PlayerSettingsYaml:
|
||||||
|
m_Settings:
|
||||||
|
- line: '| PlayerSettings:'
|
||||||
|
- line: '| m_ObjectHideFlags: 0'
|
||||||
|
- line: '| serializedVersion: 28'
|
||||||
|
- line: '| productGUID: 628a94fce16164265a5492dda8ed06cb'
|
||||||
|
- line: '| AndroidProfiler: 0'
|
||||||
|
- line: '| AndroidFilterTouchesWhenObscured: 0'
|
||||||
|
- line: '| AndroidEnableSustainedPerformanceMode: 0'
|
||||||
|
- line: '| defaultScreenOrientation: 4'
|
||||||
|
- line: '| targetDevice: 2'
|
||||||
|
- line: '| useOnDemandResources: 0'
|
||||||
|
- line: '| accelerometerFrequency: 60'
|
||||||
|
- line: '| companyName: Cooney Studio'
|
||||||
|
- line: '| productName: Screen Capture'
|
||||||
|
- line: '| defaultCursor: {instanceID: 0}'
|
||||||
|
- line: '| cursorHotspot: {x: 0, y: 0}'
|
||||||
|
- line: '| m_SplashScreenBackgroundColor: {r: 0.8, g: 0.8, b: 0.8, a: 1}'
|
||||||
|
- line: '| m_ShowUnitySplashScreen: 1'
|
||||||
|
- line: '| m_ShowUnitySplashLogo: 1'
|
||||||
|
- line: '| m_SplashScreenOverlayOpacity: 1'
|
||||||
|
- line: '| m_SplashScreenAnimation: 1'
|
||||||
|
- line: '| m_SplashScreenLogoStyle: 0'
|
||||||
|
- line: '| m_SplashScreenDrawMode: 0'
|
||||||
|
- line: '| m_SplashScreenBackgroundAnimationZoom: 1'
|
||||||
|
- line: '| m_SplashScreenLogoAnimationZoom: 1'
|
||||||
|
- line: '| m_SplashScreenBackgroundLandscapeAspect: 1'
|
||||||
|
- line: '| m_SplashScreenBackgroundPortraitAspect: 1'
|
||||||
|
- line: '| m_SplashScreenBackgroundLandscapeUvs:'
|
||||||
|
- line: '| serializedVersion: 2'
|
||||||
|
- line: '| x: 0'
|
||||||
|
- line: '| y: 0'
|
||||||
|
- line: '| width: 1'
|
||||||
|
- line: '| height: 1'
|
||||||
|
- line: '| m_SplashScreenBackgroundPortraitUvs:'
|
||||||
|
- line: '| serializedVersion: 2'
|
||||||
|
- line: '| x: 0'
|
||||||
|
- line: '| y: 0'
|
||||||
|
- line: '| width: 1'
|
||||||
|
- line: '| height: 1'
|
||||||
|
- line: '| m_SplashScreenLogos: []'
|
||||||
|
- line: '| m_VirtualRealitySplashScreen: {instanceID: 0}'
|
||||||
|
- line: '| m_HolographicTrackingLossScreen: {instanceID: 0}'
|
||||||
|
- line: '| defaultScreenWidth: 480'
|
||||||
|
- line: '| defaultScreenHeight: 320'
|
||||||
|
- line: '| defaultScreenWidthWeb: 960'
|
||||||
|
- line: '| defaultScreenHeightWeb: 600'
|
||||||
|
- line: '| m_StereoRenderingPath: 0'
|
||||||
|
- line: '| m_ActiveColorSpace: 1'
|
||||||
|
- line: '| unsupportedMSAAFallback: 0'
|
||||||
|
- line: '| m_SpriteBatchMaxVertexCount: 65535'
|
||||||
|
- line: '| m_SpriteBatchVertexThreshold: 300'
|
||||||
|
- line: '| m_MTRendering: 1'
|
||||||
|
- line: '| mipStripping: 0'
|
||||||
|
- line: '| numberOfMipsStripped: 0'
|
||||||
|
- line: '| numberOfMipsStrippedPerMipmapLimitGroup: {}'
|
||||||
|
- line: '| m_StackTraceTypes: 010000000100000001000000010000000100000001000000'
|
||||||
|
- line: '| iosShowActivityIndicatorOnLoading: -1'
|
||||||
|
- line: '| androidShowActivityIndicatorOnLoading: -1'
|
||||||
|
- line: '| iosUseCustomAppBackgroundBehavior: 0'
|
||||||
|
- line: '| allowedAutorotateToPortrait: 1'
|
||||||
|
- line: '| allowedAutorotateToPortraitUpsideDown: 1'
|
||||||
|
- line: '| allowedAutorotateToLandscapeRight: 1'
|
||||||
|
- line: '| allowedAutorotateToLandscapeLeft: 1'
|
||||||
|
- line: '| useOSAutorotation: 1'
|
||||||
|
- line: '| use32BitDisplayBuffer: 1'
|
||||||
|
- line: '| preserveFramebufferAlpha: 0'
|
||||||
|
- line: '| disableDepthAndStencilBuffers: 0'
|
||||||
|
- line: '| androidStartInFullscreen: 1'
|
||||||
|
- line: '| androidRenderOutsideSafeArea: 1'
|
||||||
|
- line: '| androidUseSwappy: 1'
|
||||||
|
- line: '| androidDisplayOptions: 1'
|
||||||
|
- line: '| androidBlitType: 0'
|
||||||
|
- line: '| androidResizeableActivity: 1'
|
||||||
|
- line: '| androidDefaultWindowWidth: 1920'
|
||||||
|
- line: '| androidDefaultWindowHeight: 1080'
|
||||||
|
- line: '| androidMinimumWindowWidth: 400'
|
||||||
|
- line: '| androidMinimumWindowHeight: 300'
|
||||||
|
- line: '| androidFullscreenMode: 1'
|
||||||
|
- line: '| androidAutoRotationBehavior: 1'
|
||||||
|
- line: '| androidPredictiveBackSupport: 0'
|
||||||
|
- line: '| androidApplicationEntry: 2'
|
||||||
|
- line: '| defaultIsNativeResolution: 1'
|
||||||
|
- line: '| macRetinaSupport: 1'
|
||||||
|
- line: '| runInBackground: 1'
|
||||||
|
- line: '| muteOtherAudioSources: 0'
|
||||||
|
- line: '| Prepare IOS For Recording: 0'
|
||||||
|
- line: '| Force IOS Speakers When Recording: 0'
|
||||||
|
- line: '| audioSpatialExperience: 0'
|
||||||
|
- line: '| deferSystemGesturesMode: 0'
|
||||||
|
- line: '| hideHomeButton: 0'
|
||||||
|
- line: '| submitAnalytics: 1'
|
||||||
|
- line: '| usePlayerLog: 0'
|
||||||
|
- line: '| dedicatedServerOptimizations: 1'
|
||||||
|
- line: '| bakeCollisionMeshes: 0'
|
||||||
|
- line: '| forceSingleInstance: 0'
|
||||||
|
- line: '| useFlipModelSwapchain: 1'
|
||||||
|
- line: '| resizableWindow: 0'
|
||||||
|
- line: '| useMacAppStoreValidation: 0'
|
||||||
|
- line: '| macAppStoreCategory: public.app-category.games'
|
||||||
|
- line: '| gpuSkinning: 0'
|
||||||
|
- line: '| meshDeformation: 0'
|
||||||
|
- line: '| xboxPIXTextureCapture: 0'
|
||||||
|
- line: '| xboxEnableAvatar: 0'
|
||||||
|
- line: '| xboxEnableKinect: 0'
|
||||||
|
- line: '| xboxEnableKinectAutoTracking: 0'
|
||||||
|
- line: '| xboxEnableFitness: 0'
|
||||||
|
- line: '| visibleInBackground: 1'
|
||||||
|
- line: '| allowFullscreenSwitch: 0'
|
||||||
|
- line: '| fullscreenMode: 3'
|
||||||
|
- line: '| xboxSpeechDB: 0'
|
||||||
|
- line: '| xboxEnableHeadOrientation: 0'
|
||||||
|
- line: '| xboxEnableGuest: 0'
|
||||||
|
- line: '| xboxEnablePIXSampling: 0'
|
||||||
|
- line: '| metalFramebufferOnly: 0'
|
||||||
|
- line: '| xboxOneResolution: 0'
|
||||||
|
- line: '| xboxOneSResolution: 0'
|
||||||
|
- line: '| xboxOneXResolution: 3'
|
||||||
|
- line: '| xboxOneMonoLoggingLevel: 0'
|
||||||
|
- line: '| xboxOneLoggingLevel: 1'
|
||||||
|
- line: '| xboxOneDisableEsram: 0'
|
||||||
|
- line: '| xboxOneEnableTypeOptimization: 0'
|
||||||
|
- line: '| xboxOnePresentImmediateThreshold: 0'
|
||||||
|
- line: '| switchQueueCommandMemory: 1048576'
|
||||||
|
- line: '| switchQueueControlMemory: 16384'
|
||||||
|
- line: '| switchQueueComputeMemory: 262144'
|
||||||
|
- line: '| switchNVNShaderPoolsGranularity: 33554432'
|
||||||
|
- line: '| switchNVNDefaultPoolsGranularity: 16777216'
|
||||||
|
- line: '| switchNVNOtherPoolsGranularity: 16777216'
|
||||||
|
- line: '| switchGpuScratchPoolGranularity: 2097152'
|
||||||
|
- line: '| switchAllowGpuScratchShrinking: 0'
|
||||||
|
- line: '| switchNVNMaxPublicTextureIDCount: 0'
|
||||||
|
- line: '| switchNVNMaxPublicSamplerIDCount: 0'
|
||||||
|
- line: '| switchMaxWorkerMultiple: 8'
|
||||||
|
- line: '| switchNVNGraphicsFirmwareMemory: 32'
|
||||||
|
- line: '| switchGraphicsJobsSyncAfterKick: 1'
|
||||||
|
- line: '| vulkanNumSwapchainBuffers: 3'
|
||||||
|
- line: '| vulkanEnableSetSRGBWrite: 0'
|
||||||
|
- line: '| vulkanEnablePreTransform: 0'
|
||||||
|
- line: '| vulkanEnableLateAcquireNextImage: 0'
|
||||||
|
- line: '| vulkanEnableCommandBufferRecycling: 1'
|
||||||
|
- line: '| loadStoreDebugModeEnabled: 0'
|
||||||
|
- line: '| visionOSBundleVersion: 1.0'
|
||||||
|
- line: '| tvOSBundleVersion: 1.0'
|
||||||
|
- line: '| bundleVersion: 1.0'
|
||||||
|
- line: '| preloadedAssets:'
|
||||||
|
- line: '| - {fileID: -944628639613478452, guid: 2bcd2660ca9b64942af0de543d8d7100,
|
||||||
|
type: 3}'
|
||||||
|
- line: '| metroInputSource: 0'
|
||||||
|
- line: '| wsaTransparentSwapchain: 0'
|
||||||
|
- line: '| m_HolographicPauseOnTrackingLoss: 1'
|
||||||
|
- line: '| xboxOneDisableKinectGpuReservation: 1'
|
||||||
|
- line: '| xboxOneEnable7thCore: 1'
|
||||||
|
- line: '| vrSettings:'
|
||||||
|
- line: '| enable360StereoCapture: 0'
|
||||||
|
- line: '| isWsaHolographicRemotingEnabled: 0'
|
||||||
|
- line: '| enableFrameTimingStats: 0'
|
||||||
|
- line: '| enableOpenGLProfilerGPURecorders: 1'
|
||||||
|
- line: '| allowHDRDisplaySupport: 0'
|
||||||
|
- line: '| useHDRDisplay: 0'
|
||||||
|
- line: '| hdrBitDepth: 0'
|
||||||
|
- line: '| m_ColorGamuts: 00000000'
|
||||||
|
- line: '| targetPixelDensity: 30'
|
||||||
|
- line: '| resolutionScalingMode: 0'
|
||||||
|
- line: '| resetResolutionOnWindowResize: 0'
|
||||||
|
- line: '| androidSupportedAspectRatio: 1'
|
||||||
|
- line: '| androidMaxAspectRatio: 2.4'
|
||||||
|
- line: '| androidMinAspectRatio: 1'
|
||||||
|
- line: '| applicationIdentifier:'
|
||||||
|
- line: '| Standalone: com.DefaultCompany.2D-URP'
|
||||||
|
- line: '| buildNumber:'
|
||||||
|
- line: '| Standalone: 0'
|
||||||
|
- line: '| VisionOS: 0'
|
||||||
|
- line: '| iPhone: 0'
|
||||||
|
- line: '| tvOS: 0'
|
||||||
|
- line: '| overrideDefaultApplicationIdentifier: 1'
|
||||||
|
- line: '| AndroidBundleVersionCode: 1'
|
||||||
|
- line: '| AndroidMinSdkVersion: 23'
|
||||||
|
- line: '| AndroidTargetSdkVersion: 0'
|
||||||
|
- line: '| AndroidPreferredInstallLocation: 1'
|
||||||
|
- line: '| aotOptions: '
|
||||||
|
- line: '| stripEngineCode: 1'
|
||||||
|
- line: '| iPhoneStrippingLevel: 0'
|
||||||
|
- line: '| iPhoneScriptCallOptimization: 0'
|
||||||
|
- line: '| ForceInternetPermission: 0'
|
||||||
|
- line: '| ForceSDCardPermission: 0'
|
||||||
|
- line: '| CreateWallpaper: 0'
|
||||||
|
- line: '| androidSplitApplicationBinary: 0'
|
||||||
|
- line: '| keepLoadedShadersAlive: 0'
|
||||||
|
- line: '| StripUnusedMeshComponents: 0'
|
||||||
|
- line: '| strictShaderVariantMatching: 0'
|
||||||
|
- line: '| VertexChannelCompressionMask: 4054'
|
||||||
|
- line: '| iPhoneSdkVersion: 988'
|
||||||
|
- line: '| iOSSimulatorArchitecture: 0'
|
||||||
|
- line: '| iOSTargetOSVersionString: 13.0'
|
||||||
|
- line: '| tvOSSdkVersion: 0'
|
||||||
|
- line: '| tvOSSimulatorArchitecture: 0'
|
||||||
|
- line: '| tvOSRequireExtendedGameController: 0'
|
||||||
|
- line: '| tvOSTargetOSVersionString: 13.0'
|
||||||
|
- line: '| VisionOSSdkVersion: 0'
|
||||||
|
- line: '| VisionOSTargetOSVersionString: 1.0'
|
||||||
|
- line: '| uIPrerenderedIcon: 0'
|
||||||
|
- line: '| uIRequiresPersistentWiFi: 0'
|
||||||
|
- line: '| uIRequiresFullScreen: 1'
|
||||||
|
- line: '| uIStatusBarHidden: 1'
|
||||||
|
- line: '| uIExitOnSuspend: 0'
|
||||||
|
- line: '| uIStatusBarStyle: 0'
|
||||||
|
- line: '| appleTVSplashScreen: {instanceID: 0}'
|
||||||
|
- line: '| appleTVSplashScreen2x: {instanceID: 0}'
|
||||||
|
- line: '| tvOSSmallIconLayers: []'
|
||||||
|
- line: '| tvOSSmallIconLayers2x: []'
|
||||||
|
- line: '| tvOSLargeIconLayers: []'
|
||||||
|
- line: '| tvOSLargeIconLayers2x: []'
|
||||||
|
- line: '| tvOSTopShelfImageLayers: []'
|
||||||
|
- line: '| tvOSTopShelfImageLayers2x: []'
|
||||||
|
- line: '| tvOSTopShelfImageWideLayers: []'
|
||||||
|
- line: '| tvOSTopShelfImageWideLayers2x: []'
|
||||||
|
- line: '| iOSLaunchScreenType: 0'
|
||||||
|
- line: '| iOSLaunchScreenPortrait: {instanceID: 0}'
|
||||||
|
- line: '| iOSLaunchScreenLandscape: {instanceID: 0}'
|
||||||
|
- line: '| iOSLaunchScreenBackgroundColor:'
|
||||||
|
- line: '| serializedVersion: 2'
|
||||||
|
- line: '| rgba: 0'
|
||||||
|
- line: '| iOSLaunchScreenFillPct: 100'
|
||||||
|
- line: '| iOSLaunchScreenSize: 100'
|
||||||
|
- line: '| iOSLaunchScreeniPadType: 0'
|
||||||
|
- line: '| iOSLaunchScreeniPadImage: {instanceID: 0}'
|
||||||
|
- line: '| iOSLaunchScreeniPadBackgroundColor:'
|
||||||
|
- line: '| serializedVersion: 2'
|
||||||
|
- line: '| rgba: 0'
|
||||||
|
- line: '| iOSLaunchScreeniPadFillPct: 100'
|
||||||
|
- line: '| iOSLaunchScreeniPadSize: 100'
|
||||||
|
- line: '| iOSLaunchScreenCustomStoryboardPath: '
|
||||||
|
- line: '| iOSLaunchScreeniPadCustomStoryboardPath: '
|
||||||
|
- line: '| iOSDeviceRequirements: []'
|
||||||
|
- line: '| iOSURLSchemes: []'
|
||||||
|
- line: '| macOSURLSchemes: []'
|
||||||
|
- line: '| iOSBackgroundModes: 0'
|
||||||
|
- line: '| iOSMetalForceHardShadows: 0'
|
||||||
|
- line: '| metalEditorSupport: 1'
|
||||||
|
- line: '| metalAPIValidation: 1'
|
||||||
|
- line: '| metalCompileShaderBinary: 0'
|
||||||
|
- line: '| iOSRenderExtraFrameOnPause: 0'
|
||||||
|
- line: '| iosCopyPluginsCodeInsteadOfSymlink: 0'
|
||||||
|
- line: '| appleDeveloperTeamID: '
|
||||||
|
- line: '| iOSManualSigningProvisioningProfileID: '
|
||||||
|
- line: '| tvOSManualSigningProvisioningProfileID: '
|
||||||
|
- line: '| VisionOSManualSigningProvisioningProfileID: '
|
||||||
|
- line: '| iOSManualSigningProvisioningProfileType: 0'
|
||||||
|
- line: '| tvOSManualSigningProvisioningProfileType: 0'
|
||||||
|
- line: '| VisionOSManualSigningProvisioningProfileType: 0'
|
||||||
|
- line: '| appleEnableAutomaticSigning: 0'
|
||||||
|
- line: '| iOSRequireARKit: 0'
|
||||||
|
- line: '| iOSAutomaticallyDetectAndAddCapabilities: 1'
|
||||||
|
- line: '| appleEnableProMotion: 0'
|
||||||
|
- line: '| shaderPrecisionModel: 0'
|
||||||
|
- line: '| clonedFromGUID: c19f32bac17ee4170b3bf8a6a0333fb9'
|
||||||
|
- line: '| templatePackageId: com.unity.template.universal-2d@6.1.1'
|
||||||
|
- line: '| templateDefaultScene: Assets/Scenes/SampleScene.unity'
|
||||||
|
- line: '| useCustomMainManifest: 0'
|
||||||
|
- line: '| useCustomLauncherManifest: 0'
|
||||||
|
- line: '| useCustomMainGradleTemplate: 0'
|
||||||
|
- line: '| useCustomLauncherGradleManifest: 0'
|
||||||
|
- line: '| useCustomBaseGradleTemplate: 0'
|
||||||
|
- line: '| useCustomGradlePropertiesTemplate: 0'
|
||||||
|
- line: '| useCustomGradleSettingsTemplate: 0'
|
||||||
|
- line: '| useCustomProguardFile: 0'
|
||||||
|
- line: '| AndroidTargetArchitectures: 2'
|
||||||
|
- line: '| AndroidSplashScreenScale: 0'
|
||||||
|
- line: '| androidSplashScreen: {instanceID: 0}'
|
||||||
|
- line: '| AndroidKeystoreName: '
|
||||||
|
- line: '| AndroidKeyaliasName: '
|
||||||
|
- line: '| AndroidEnableArmv9SecurityFeatures: 0'
|
||||||
|
- line: '| AndroidEnableArm64MTE: 0'
|
||||||
|
- line: '| AndroidBuildApkPerCpuArchitecture: 0'
|
||||||
|
- line: '| AndroidTVCompatibility: 0'
|
||||||
|
- line: '| AndroidIsGame: 1'
|
||||||
|
- line: '| androidAppCategory: 3'
|
||||||
|
- line: '| useAndroidAppCategory: 1'
|
||||||
|
- line: '| androidAppCategoryOther: '
|
||||||
|
- line: '| AndroidEnableTango: 0'
|
||||||
|
- line: '| androidEnableBanner: 1'
|
||||||
|
- line: '| androidUseLowAccuracyLocation: 0'
|
||||||
|
- line: '| androidUseCustomKeystore: 0'
|
||||||
|
- line: '| m_AndroidBanners:'
|
||||||
|
- line: '| - width: 320'
|
||||||
|
- line: '| height: 180'
|
||||||
|
- line: '| banner: {instanceID: 0}'
|
||||||
|
- line: '| androidGamepadSupportLevel: 0'
|
||||||
|
- line: '| AndroidMinifyRelease: 0'
|
||||||
|
- line: '| AndroidMinifyDebug: 0'
|
||||||
|
- line: '| AndroidValidateAppBundleSize: 1'
|
||||||
|
- line: '| AndroidAppBundleSizeToValidate: 150'
|
||||||
|
- line: '| AndroidReportGooglePlayAppDependencies: 1'
|
||||||
|
- line: '| androidSymbolsSizeThreshold: 800'
|
||||||
|
- line: '| m_BuildTargetIcons:'
|
||||||
|
- line: '| - m_BuildTarget: '
|
||||||
|
- line: '| m_Icons:'
|
||||||
|
- line: '| - serializedVersion: 2'
|
||||||
|
- line: '| m_Icon: {fileID: 2800000, guid: 5417d9d7d462af345919661548536f46,
|
||||||
|
type: 3}'
|
||||||
|
- line: '| m_Width: 128'
|
||||||
|
- line: '| m_Height: 128'
|
||||||
|
- line: '| m_Kind: 0'
|
||||||
|
- line: '| m_BuildTargetPlatformIcons: []'
|
||||||
|
- line: '| m_BuildTargetBatching:'
|
||||||
|
- line: '| - m_BuildTarget: Standalone'
|
||||||
|
- line: '| m_StaticBatching: 1'
|
||||||
|
- line: '| m_DynamicBatching: 0'
|
||||||
|
- line: '| m_BuildTargetShaderSettings: []'
|
||||||
|
- line: '| m_BuildTargetGraphicsJobs: []'
|
||||||
|
- line: '| m_BuildTargetGraphicsJobMode: []'
|
||||||
|
- line: '| m_BuildTargetGraphicsAPIs: []'
|
||||||
|
- line: '| m_BuildTargetVRSettings: []'
|
||||||
|
- line: '| m_DefaultShaderChunkSizeInMB: 16'
|
||||||
|
- line: '| m_DefaultShaderChunkCount: 0'
|
||||||
|
- line: '| openGLRequireES31: 0'
|
||||||
|
- line: '| openGLRequireES31AEP: 0'
|
||||||
|
- line: '| openGLRequireES32: 0'
|
||||||
|
- line: '| m_TemplateCustomTags: {}'
|
||||||
|
- line: '| mobileMTRendering:'
|
||||||
|
- line: '| Android: 1'
|
||||||
|
- line: '| iPhone: 1'
|
||||||
|
- line: '| tvOS: 1'
|
||||||
|
- line: '| m_BuildTargetGroupLightmapEncodingQuality: []'
|
||||||
|
- line: '| m_BuildTargetGroupHDRCubemapEncodingQuality: []'
|
||||||
|
- line: '| m_BuildTargetGroupLightmapSettings: []'
|
||||||
|
- line: '| m_BuildTargetGroupLoadStoreDebugModeSettings: []'
|
||||||
|
- line: '| m_BuildTargetNormalMapEncoding: []'
|
||||||
|
- line: '| m_BuildTargetDefaultTextureCompressionFormat: []'
|
||||||
|
- line: '| playModeTestRunnerEnabled: 0'
|
||||||
|
- line: '| runPlayModeTestAsEditModeTest: 0'
|
||||||
|
- line: '| actionOnDotNetUnhandledException: 1'
|
||||||
|
- line: '| editorGfxJobOverride: 1'
|
||||||
|
- line: '| enableInternalProfiler: 0'
|
||||||
|
- line: '| logObjCUncaughtExceptions: 1'
|
||||||
|
- line: '| enableCrashReportAPI: 0'
|
||||||
|
- line: '| cameraUsageDescription: '
|
||||||
|
- line: '| locationUsageDescription: '
|
||||||
|
- line: '| microphoneUsageDescription: '
|
||||||
|
- line: '| bluetoothUsageDescription: '
|
||||||
|
- line: '| macOSTargetOSVersion: 11.0'
|
||||||
|
- line: '| switchNMETAOverride: '
|
||||||
|
- line: '| switchNetLibKey: '
|
||||||
|
- line: '| switchSocketMemoryPoolSize: 6144'
|
||||||
|
- line: '| switchSocketAllocatorPoolSize: 128'
|
||||||
|
- line: '| switchSocketConcurrencyLimit: 14'
|
||||||
|
- line: '| switchScreenResolutionBehavior: 2'
|
||||||
|
- line: '| switchUseCPUProfiler: 0'
|
||||||
|
- line: '| switchEnableFileSystemTrace: 0'
|
||||||
|
- line: '| switchLTOSetting: 0'
|
||||||
|
- line: '| switchApplicationID: 0x01004b9000490000'
|
||||||
|
- line: '| switchNSODependencies: '
|
||||||
|
- line: '| switchCompilerFlags: '
|
||||||
|
- line: '| switchTitleNames_0: '
|
||||||
|
- line: '| switchTitleNames_1: '
|
||||||
|
- line: '| switchTitleNames_2: '
|
||||||
|
- line: '| switchTitleNames_3: '
|
||||||
|
- line: '| switchTitleNames_4: '
|
||||||
|
- line: '| switchTitleNames_5: '
|
||||||
|
- line: '| switchTitleNames_6: '
|
||||||
|
- line: '| switchTitleNames_7: '
|
||||||
|
- line: '| switchTitleNames_8: '
|
||||||
|
- line: '| switchTitleNames_9: '
|
||||||
|
- line: '| switchTitleNames_10: '
|
||||||
|
- line: '| switchTitleNames_11: '
|
||||||
|
- line: '| switchTitleNames_12: '
|
||||||
|
- line: '| switchTitleNames_13: '
|
||||||
|
- line: '| switchTitleNames_14: '
|
||||||
|
- line: '| switchTitleNames_15: '
|
||||||
|
- line: '| switchPublisherNames_0: '
|
||||||
|
- line: '| switchPublisherNames_1: '
|
||||||
|
- line: '| switchPublisherNames_2: '
|
||||||
|
- line: '| switchPublisherNames_3: '
|
||||||
|
- line: '| switchPublisherNames_4: '
|
||||||
|
- line: '| switchPublisherNames_5: '
|
||||||
|
- line: '| switchPublisherNames_6: '
|
||||||
|
- line: '| switchPublisherNames_7: '
|
||||||
|
- line: '| switchPublisherNames_8: '
|
||||||
|
- line: '| switchPublisherNames_9: '
|
||||||
|
- line: '| switchPublisherNames_10: '
|
||||||
|
- line: '| switchPublisherNames_11: '
|
||||||
|
- line: '| switchPublisherNames_12: '
|
||||||
|
- line: '| switchPublisherNames_13: '
|
||||||
|
- line: '| switchPublisherNames_14: '
|
||||||
|
- line: '| switchPublisherNames_15: '
|
||||||
|
- line: '| switchIcons_0: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_1: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_2: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_3: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_4: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_5: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_6: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_7: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_8: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_9: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_10: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_11: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_12: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_13: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_14: {instanceID: 0}'
|
||||||
|
- line: '| switchIcons_15: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_0: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_1: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_2: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_3: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_4: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_5: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_6: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_7: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_8: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_9: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_10: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_11: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_12: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_13: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_14: {instanceID: 0}'
|
||||||
|
- line: '| switchSmallIcons_15: {instanceID: 0}'
|
||||||
|
- line: '| switchManualHTML: '
|
||||||
|
- line: '| switchAccessibleURLs: '
|
||||||
|
- line: '| switchLegalInformation: '
|
||||||
|
- line: '| switchMainThreadStackSize: 1048576'
|
||||||
|
- line: '| switchPresenceGroupId: '
|
||||||
|
- line: '| switchLogoHandling: 0'
|
||||||
|
- line: '| switchReleaseVersion: 0'
|
||||||
|
- line: '| switchDisplayVersion: 1.0.0'
|
||||||
|
- line: '| switchStartupUserAccount: 0'
|
||||||
|
- line: '| switchSupportedLanguagesMask: 0'
|
||||||
|
- line: '| switchLogoType: 0'
|
||||||
|
- line: '| switchApplicationErrorCodeCategory: '
|
||||||
|
- line: '| switchUserAccountSaveDataSize: 0'
|
||||||
|
- line: '| switchUserAccountSaveDataJournalSize: 0'
|
||||||
|
- line: '| switchApplicationAttribute: 0'
|
||||||
|
- line: '| switchCardSpecSize: -1'
|
||||||
|
- line: '| switchCardSpecClock: -1'
|
||||||
|
- line: '| switchRatingsMask: 0'
|
||||||
|
- line: '| switchRatingsInt_0: 0'
|
||||||
|
- line: '| switchRatingsInt_1: 0'
|
||||||
|
- line: '| switchRatingsInt_2: 0'
|
||||||
|
- line: '| switchRatingsInt_3: 0'
|
||||||
|
- line: '| switchRatingsInt_4: 0'
|
||||||
|
- line: '| switchRatingsInt_5: 0'
|
||||||
|
- line: '| switchRatingsInt_6: 0'
|
||||||
|
- line: '| switchRatingsInt_7: 0'
|
||||||
|
- line: '| switchRatingsInt_8: 0'
|
||||||
|
- line: '| switchRatingsInt_9: 0'
|
||||||
|
- line: '| switchRatingsInt_10: 0'
|
||||||
|
- line: '| switchRatingsInt_11: 0'
|
||||||
|
- line: '| switchRatingsInt_12: 0'
|
||||||
|
- line: '| switchLocalCommunicationIds_0: '
|
||||||
|
- line: '| switchLocalCommunicationIds_1: '
|
||||||
|
- line: '| switchLocalCommunicationIds_2: '
|
||||||
|
- line: '| switchLocalCommunicationIds_3: '
|
||||||
|
- line: '| switchLocalCommunicationIds_4: '
|
||||||
|
- line: '| switchLocalCommunicationIds_5: '
|
||||||
|
- line: '| switchLocalCommunicationIds_6: '
|
||||||
|
- line: '| switchLocalCommunicationIds_7: '
|
||||||
|
- line: '| switchParentalControl: 0'
|
||||||
|
- line: '| switchAllowsScreenshot: 1'
|
||||||
|
- line: '| switchAllowsVideoCapturing: 1'
|
||||||
|
- line: '| switchAllowsRuntimeAddOnContentInstall: 0'
|
||||||
|
- line: '| switchDataLossConfirmation: 0'
|
||||||
|
- line: '| switchUserAccountLockEnabled: 0'
|
||||||
|
- line: '| switchSystemResourceMemory: 16777216'
|
||||||
|
- line: '| switchSupportedNpadStyles: 22'
|
||||||
|
- line: '| switchNativeFsCacheSize: 32'
|
||||||
|
- line: '| switchIsHoldTypeHorizontal: 0'
|
||||||
|
- line: '| switchSupportedNpadCount: 8'
|
||||||
|
- line: '| switchEnableTouchScreen: 1'
|
||||||
|
- line: '| switchSocketConfigEnabled: 0'
|
||||||
|
- line: '| switchTcpInitialSendBufferSize: 32'
|
||||||
|
- line: '| switchTcpInitialReceiveBufferSize: 64'
|
||||||
|
- line: '| switchTcpAutoSendBufferSizeMax: 256'
|
||||||
|
- line: '| switchTcpAutoReceiveBufferSizeMax: 256'
|
||||||
|
- line: '| switchUdpSendBufferSize: 9'
|
||||||
|
- line: '| switchUdpReceiveBufferSize: 42'
|
||||||
|
- line: '| switchSocketBufferEfficiency: 4'
|
||||||
|
- line: '| switchSocketInitializeEnabled: 1'
|
||||||
|
- line: '| switchNetworkInterfaceManagerInitializeEnabled: 1'
|
||||||
|
- line: '| switchDisableHTCSPlayerConnection: 0'
|
||||||
|
- line: '| switchUseNewStyleFilepaths: 0'
|
||||||
|
- line: '| switchUseLegacyFmodPriorities: 0'
|
||||||
|
- line: '| switchUseMicroSleepForYield: 1'
|
||||||
|
- line: '| switchEnableRamDiskSupport: 0'
|
||||||
|
- line: '| switchMicroSleepForYieldTime: 25'
|
||||||
|
- line: '| switchRamDiskSpaceSize: 12'
|
||||||
|
- line: '| switchUpgradedPlayerSettingsToNMETA: 0'
|
||||||
|
- line: '| ps4NPAgeRating: 12'
|
||||||
|
- line: '| ps4NPTitleSecret: '
|
||||||
|
- line: '| ps4NPTrophyPackPath: '
|
||||||
|
- line: '| ps4ParentalLevel: 11'
|
||||||
|
- line: '| ps4ContentID: ED1633-NPXX51362_00-0000000000000000'
|
||||||
|
- line: '| ps4Category: 0'
|
||||||
|
- line: '| ps4MasterVersion: 01.00'
|
||||||
|
- line: '| ps4AppVersion: 01.00'
|
||||||
|
- line: '| ps4AppType: 0'
|
||||||
|
- line: '| ps4ParamSfxPath: '
|
||||||
|
- line: '| ps4VideoOutPixelFormat: 0'
|
||||||
|
- line: '| ps4VideoOutInitialWidth: 1920'
|
||||||
|
- line: '| ps4VideoOutBaseModeInitialWidth: 1920'
|
||||||
|
- line: '| ps4VideoOutReprojectionRate: 60'
|
||||||
|
- line: '| ps4PronunciationXMLPath: '
|
||||||
|
- line: '| ps4PronunciationSIGPath: '
|
||||||
|
- line: '| ps4BackgroundImagePath: '
|
||||||
|
- line: '| ps4StartupImagePath: '
|
||||||
|
- line: '| ps4StartupImagesFolder: '
|
||||||
|
- line: '| ps4IconImagesFolder: '
|
||||||
|
- line: '| ps4SaveDataImagePath: '
|
||||||
|
- line: '| ps4SdkOverride: '
|
||||||
|
- line: '| ps4BGMPath: '
|
||||||
|
- line: '| ps4ShareFilePath: '
|
||||||
|
- line: '| ps4ShareOverlayImagePath: '
|
||||||
|
- line: '| ps4PrivacyGuardImagePath: '
|
||||||
|
- line: '| ps4ExtraSceSysFile: '
|
||||||
|
- line: '| ps4NPtitleDatPath: '
|
||||||
|
- line: '| ps4RemotePlayKeyAssignment: -1'
|
||||||
|
- line: '| ps4RemotePlayKeyMappingDir: '
|
||||||
|
- line: '| ps4PlayTogetherPlayerCount: 0'
|
||||||
|
- line: '| ps4EnterButtonAssignment: 2'
|
||||||
|
- line: '| ps4ApplicationParam1: 0'
|
||||||
|
- line: '| ps4ApplicationParam2: 0'
|
||||||
|
- line: '| ps4ApplicationParam3: 0'
|
||||||
|
- line: '| ps4ApplicationParam4: 0'
|
||||||
|
- line: '| ps4DownloadDataSize: 0'
|
||||||
|
- line: '| ps4GarlicHeapSize: 2048'
|
||||||
|
- line: '| ps4ProGarlicHeapSize: 2560'
|
||||||
|
- line: '| playerPrefsMaxSize: 32768'
|
||||||
|
- line: '| ps4Passcode: NwJcpdhxV3VhtobFDKvjHICS9m8D35cy'
|
||||||
|
- line: '| ps4pnSessions: 1'
|
||||||
|
- line: '| ps4pnPresence: 1'
|
||||||
|
- line: '| ps4pnFriends: 1'
|
||||||
|
- line: '| ps4pnGameCustomData: 1'
|
||||||
|
- line: '| playerPrefsSupport: 0'
|
||||||
|
- line: '| enableApplicationExit: 0'
|
||||||
|
- line: '| resetTempFolder: 1'
|
||||||
|
- line: '| restrictedAudioUsageRights: 0'
|
||||||
|
- line: '| ps4UseResolutionFallback: 0'
|
||||||
|
- line: '| ps4ReprojectionSupport: 0'
|
||||||
|
- line: '| ps4UseAudio3dBackend: 0'
|
||||||
|
- line: '| ps4UseLowGarlicFragmentationMode: 1'
|
||||||
|
- line: '| ps4SocialScreenEnabled: 0'
|
||||||
|
- line: '| ps4ScriptOptimizationLevel: 2'
|
||||||
|
- line: '| ps4Audio3dVirtualSpeakerCount: 14'
|
||||||
|
- line: '| ps4attribCpuUsage: 0'
|
||||||
|
- line: '| ps4PatchPkgPath: '
|
||||||
|
- line: '| ps4PatchLatestPkgPath: '
|
||||||
|
- line: '| ps4PatchChangeinfoPath: '
|
||||||
|
- line: '| ps4PatchDayOne: 0'
|
||||||
|
- line: '| ps4attribUserManagement: 0'
|
||||||
|
- line: '| ps4attribMoveSupport: 0'
|
||||||
|
- line: '| ps4attrib3DSupport: 0'
|
||||||
|
- line: '| ps4attribShareSupport: 0'
|
||||||
|
- line: '| ps4attribExclusiveVR: 0'
|
||||||
|
- line: '| ps4disableAutoHideSplash: 0'
|
||||||
|
- line: '| ps4videoRecordingFeaturesUsed: 0'
|
||||||
|
- line: '| ps4contentSearchFeaturesUsed: 0'
|
||||||
|
- line: '| ps4CompatibilityPS5: 0'
|
||||||
|
- line: '| ps4AllowPS5Detection: 0'
|
||||||
|
- line: '| ps4GPU800MHz: 1'
|
||||||
|
- line: '| ps4attribEyeToEyeDistanceSettingVR: 0'
|
||||||
|
- line: '| ps4IncludedModules: []'
|
||||||
|
- line: '| ps4attribVROutputEnabled: 0'
|
||||||
|
- line: '| monoEnv: '
|
||||||
|
- line: '| splashScreenBackgroundSourceLandscape: {instanceID: 0}'
|
||||||
|
- line: '| splashScreenBackgroundSourcePortrait: {instanceID: 0}'
|
||||||
|
- line: '| blurSplashScreenBackground: 1'
|
||||||
|
- line: '| spritePackerPolicy: '
|
||||||
|
- line: '| webGLMemorySize: 32'
|
||||||
|
- line: '| webGLExceptionSupport: 1'
|
||||||
|
- line: '| webGLNameFilesAsHashes: 0'
|
||||||
|
- line: '| webGLShowDiagnostics: 0'
|
||||||
|
- line: '| webGLDataCaching: 1'
|
||||||
|
- line: '| webGLDebugSymbols: 0'
|
||||||
|
- line: '| webGLEmscriptenArgs: '
|
||||||
|
- line: '| webGLModulesDirectory: '
|
||||||
|
- line: '| webGLTemplate: APPLICATION:Default'
|
||||||
|
- line: '| webGLAnalyzeBuildSize: 0'
|
||||||
|
- line: '| webGLUseEmbeddedResources: 0'
|
||||||
|
- line: '| webGLCompressionFormat: 0'
|
||||||
|
- line: '| webGLWasmArithmeticExceptions: 0'
|
||||||
|
- line: '| webGLLinkerTarget: 1'
|
||||||
|
- line: '| webGLThreadsSupport: 0'
|
||||||
|
- line: '| webGLDecompressionFallback: 0'
|
||||||
|
- line: '| webGLInitialMemorySize: 32'
|
||||||
|
- line: '| webGLMaximumMemorySize: 2048'
|
||||||
|
- line: '| webGLMemoryGrowthMode: 2'
|
||||||
|
- line: '| webGLMemoryLinearGrowthStep: 16'
|
||||||
|
- line: '| webGLMemoryGeometricGrowthStep: 0.2'
|
||||||
|
- line: '| webGLMemoryGeometricGrowthCap: 96'
|
||||||
|
- line: '| webGLPowerPreference: 2'
|
||||||
|
- line: '| webGLWebAssemblyTable: 0'
|
||||||
|
- line: '| webGLWebAssemblyBigInt: 0'
|
||||||
|
- line: '| webGLCloseOnQuit: 0'
|
||||||
|
- line: '| webWasm2023: 0'
|
||||||
|
- line: '| webEnableSubmoduleStrippingCompatibility: 0'
|
||||||
|
- line: '| scriptingDefineSymbols:'
|
||||||
|
- line: '| Android: DOTWEEN'
|
||||||
|
- line: '| EmbeddedLinux: DOTWEEN'
|
||||||
|
- line: '| GameCoreScarlett: DOTWEEN'
|
||||||
|
- line: '| GameCoreXboxOne: DOTWEEN'
|
||||||
|
- line: '| Kepler: DOTWEEN'
|
||||||
|
- line: '| LinuxHeadlessSimulation: DOTWEEN'
|
||||||
|
- line: '| Nintendo Switch: DOTWEEN'
|
||||||
|
- line: '| PS4: DOTWEEN'
|
||||||
|
- line: '| PS5: DOTWEEN'
|
||||||
|
- line: '| QNX: DOTWEEN'
|
||||||
|
- line: '| ReservedCFE: DOTWEEN'
|
||||||
|
- line: '| Standalone: DOTWEEN'
|
||||||
|
- line: '| VisionOS: DOTWEEN'
|
||||||
|
- line: '| WebGL: DOTWEEN'
|
||||||
|
- line: '| Windows Store Apps: DOTWEEN'
|
||||||
|
- line: '| XboxOne: DOTWEEN'
|
||||||
|
- line: '| iPhone: DOTWEEN'
|
||||||
|
- line: '| tvOS: DOTWEEN'
|
||||||
|
- line: '| additionalCompilerArguments: {}'
|
||||||
|
- line: '| platformArchitecture: {}'
|
||||||
|
- line: '| scriptingBackend:'
|
||||||
|
- line: '| Android: 1'
|
||||||
|
- line: '| il2cppCompilerConfiguration: {}'
|
||||||
|
- line: '| il2cppCodeGeneration: {}'
|
||||||
|
- line: '| il2cppStacktraceInformation: {}'
|
||||||
|
- line: '| managedStrippingLevel: {}'
|
||||||
|
- line: '| incrementalIl2cppBuild: {}'
|
||||||
|
- line: '| suppressCommonWarnings: 1'
|
||||||
|
- line: '| allowUnsafeCode: 0'
|
||||||
|
- line: '| useDeterministicCompilation: 1'
|
||||||
|
- line: '| additionalIl2CppArgs: '
|
||||||
|
- line: '| scriptingRuntimeVersion: 1'
|
||||||
|
- line: '| gcIncremental: 1'
|
||||||
|
- line: '| gcWBarrierValidation: 0'
|
||||||
|
- line: '| apiCompatibilityLevelPerPlatform: {}'
|
||||||
|
- line: '| editorAssembliesCompatibilityLevel: 2'
|
||||||
|
- line: '| m_RenderingPath: 1'
|
||||||
|
- line: '| m_MobileRenderingPath: 1'
|
||||||
|
- line: '| metroPackageName: ScreenCapture'
|
||||||
|
- line: '| metroPackageVersion: '
|
||||||
|
- line: '| metroCertificatePath: '
|
||||||
|
- line: '| metroCertificatePassword: '
|
||||||
|
- line: '| metroCertificateSubject: '
|
||||||
|
- line: '| metroCertificateIssuer: '
|
||||||
|
- line: '| metroCertificateNotAfter: 0000000000000000'
|
||||||
|
- line: '| metroApplicationDescription: ScreenCapture'
|
||||||
|
- line: '| wsaImages: {}'
|
||||||
|
- line: '| metroTileShortName: '
|
||||||
|
- line: '| metroTileShowName: 0'
|
||||||
|
- line: '| metroMediumTileShowName: 0'
|
||||||
|
- line: '| metroLargeTileShowName: 0'
|
||||||
|
- line: '| metroWideTileShowName: 0'
|
||||||
|
- line: '| metroSupportStreamingInstall: 0'
|
||||||
|
- line: '| metroLastRequiredScene: 0'
|
||||||
|
- line: '| metroDefaultTileSize: 1'
|
||||||
|
- line: '| metroTileForegroundText: 2'
|
||||||
|
- line: '| metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628,
|
||||||
|
a: 0}'
|
||||||
|
- line: '| metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902,
|
||||||
|
b: 0.21568628, a: 1}'
|
||||||
|
- line: '| metroSplashScreenUseBackgroundColor: 0'
|
||||||
|
- line: '| syncCapabilities: 0'
|
||||||
|
- line: '| platformCapabilities: {}'
|
||||||
|
- line: '| metroTargetDeviceFamilies: {}'
|
||||||
|
- line: '| metroFTAName: '
|
||||||
|
- line: '| metroFTAFileTypes: []'
|
||||||
|
- line: '| metroProtocolName: '
|
||||||
|
- line: '| vcxProjDefaultLanguage: '
|
||||||
|
- line: '| XboxOneProductId: '
|
||||||
|
- line: '| XboxOneUpdateKey: '
|
||||||
|
- line: '| XboxOneSandboxId: '
|
||||||
|
- line: '| XboxOneContentId: '
|
||||||
|
- line: '| XboxOneTitleId: '
|
||||||
|
- line: '| XboxOneSCId: '
|
||||||
|
- line: '| XboxOneGameOsOverridePath: '
|
||||||
|
- line: '| XboxOnePackagingOverridePath: '
|
||||||
|
- line: '| XboxOneAppManifestOverridePath: '
|
||||||
|
- line: '| XboxOneVersion: 1.0.0.0'
|
||||||
|
- line: '| XboxOnePackageEncryption: 0'
|
||||||
|
- line: '| XboxOnePackageUpdateGranularity: 2'
|
||||||
|
- line: '| XboxOneDescription: '
|
||||||
|
- line: '| XboxOneLanguage:'
|
||||||
|
- line: '| - enus'
|
||||||
|
- line: '| XboxOneCapability: []'
|
||||||
|
- line: '| XboxOneGameRating: {}'
|
||||||
|
- line: '| XboxOneIsContentPackage: 0'
|
||||||
|
- line: '| XboxOneEnhancedXboxCompatibilityMode: 0'
|
||||||
|
- line: '| XboxOneEnableGPUVariability: 1'
|
||||||
|
- line: '| XboxOneSockets: {}'
|
||||||
|
- line: '| XboxOneSplashScreen: {instanceID: 0}'
|
||||||
|
- line: '| XboxOneAllowedProductIds: []'
|
||||||
|
- line: '| XboxOnePersistentLocalStorageSize: 0'
|
||||||
|
- line: '| XboxOneXTitleMemory: 8'
|
||||||
|
- line: '| XboxOneOverrideIdentityName: '
|
||||||
|
- line: '| XboxOneOverrideIdentityPublisher: '
|
||||||
|
- line: '| vrEditorSettings: {}'
|
||||||
|
- line: '| cloudServicesEnabled: {}'
|
||||||
|
- line: '| luminIcon:'
|
||||||
|
- line: '| m_Name: '
|
||||||
|
- line: '| m_ModelFolderPath: '
|
||||||
|
- line: '| m_PortalFolderPath: '
|
||||||
|
- line: '| luminCert:'
|
||||||
|
- line: '| m_CertPath: '
|
||||||
|
- line: '| m_SignPackage: 1'
|
||||||
|
- line: '| luminIsChannelApp: 0'
|
||||||
|
- line: '| luminVersion:'
|
||||||
|
- line: '| m_VersionCode: 1'
|
||||||
|
- line: '| m_VersionName: '
|
||||||
|
- line: '| hmiPlayerDataPath: '
|
||||||
|
- line: '| hmiForceSRGBBlit: 1'
|
||||||
|
- line: '| embeddedLinuxEnableGamepadInput: 0'
|
||||||
|
- line: '| hmiCpuConfiguration: '
|
||||||
|
- line: '| hmiLogStartupTiming: 0'
|
||||||
|
- line: '| qnxGraphicConfPath: '
|
||||||
|
- line: '| apiCompatibilityLevel: 3'
|
||||||
|
- line: '| captureStartupLogs: {}'
|
||||||
|
- line: '| activeInputHandler: 1'
|
||||||
|
- line: '| windowsGamepadBackendHint: 0'
|
||||||
|
- line: '| cloudProjectId: '
|
||||||
|
- line: '| framebufferDepthMemorylessMode: 0'
|
||||||
|
- line: '| qualitySettingsNames: []'
|
||||||
|
- line: '| projectName: '
|
||||||
|
- line: '| organizationId: '
|
||||||
|
- line: '| cloudEnabled: 0'
|
||||||
|
- line: '| legacyClampBlendShapeWeights: 0'
|
||||||
|
- line: '| hmiLoadingImage: {instanceID: 0}'
|
||||||
|
- line: '| platformRequiresReadableAssets: 0'
|
||||||
|
- line: '| virtualTexturingSupportEnabled: 0'
|
||||||
|
- line: '| insecureHttpOption: 0'
|
||||||
|
- line: '| androidVulkanDenyFilterList: []'
|
||||||
|
- line: '| androidVulkanAllowFilterList: []'
|
||||||
|
- line: '| androidVulkanDeviceFilterListAsset: {instanceID: 0}'
|
||||||
|
- line: '| d3d12DeviceFilterListAsset: {instanceID: 0}'
|
||||||
|
- line: '| '
|
||||||
|
references:
|
||||||
|
version: 2
|
||||||
|
RefIds:
|
||||||
|
- rid: 1527313263111700547
|
||||||
|
type: {class: WindowsPlatformSettings, ns: UnityEditor.WindowsStandalone, asm: UnityEditor.WindowsStandalone.Extensions}
|
||||||
|
data:
|
||||||
|
m_Development: 0
|
||||||
|
m_ConnectProfiler: 0
|
||||||
|
m_BuildWithDeepProfilingSupport: 0
|
||||||
|
m_AllowDebugging: 0
|
||||||
|
m_WaitForManagedDebugger: 0
|
||||||
|
m_ManagedDebuggerFixedPort: 0
|
||||||
|
m_ExplicitNullChecks: 0
|
||||||
|
m_ExplicitDivideByZeroChecks: 0
|
||||||
|
m_ExplicitArrayBoundsChecks: 0
|
||||||
|
m_CompressionType: 0
|
||||||
|
m_InstallInBuildFolder: 0
|
||||||
|
m_InsightsSettingsContainer:
|
||||||
|
m_BuildProfileEngineDiagnosticsState: 2
|
||||||
|
m_WindowsBuildAndRunDeployTarget: 0
|
||||||
|
m_Architecture: 0
|
||||||
|
m_CreateSolution: 0
|
||||||
|
m_CopyPDBFiles: 0
|
||||||
|
m_WindowsDevicePortalAddress:
|
||||||
|
m_WindowsDevicePortalUsername:
|
||||||
8
Assets/Settings/Build Profiles/Windows.asset.meta
Normal file
8
Assets/Settings/Build Profiles/Windows.asset.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 209b595a9fd9c8e4bb59ef05a447092b
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -53,6 +53,7 @@ MonoBehaviour:
|
|||||||
m_AdditionalLightsShadowResolutionTierHigh: 2048
|
m_AdditionalLightsShadowResolutionTierHigh: 2048
|
||||||
m_ReflectionProbeBlending: 0
|
m_ReflectionProbeBlending: 0
|
||||||
m_ReflectionProbeBoxProjection: 0
|
m_ReflectionProbeBoxProjection: 0
|
||||||
|
m_ReflectionProbeAtlas: 1
|
||||||
m_ShadowDistance: 50
|
m_ShadowDistance: 50
|
||||||
m_ShadowCascadeCount: 1
|
m_ShadowCascadeCount: 1
|
||||||
m_Cascade2Split: 0.25
|
m_Cascade2Split: 0.25
|
||||||
@@ -78,6 +79,7 @@ MonoBehaviour:
|
|||||||
m_UseAdaptivePerformance: 1
|
m_UseAdaptivePerformance: 1
|
||||||
m_ColorGradingMode: 0
|
m_ColorGradingMode: 0
|
||||||
m_ColorGradingLutSize: 32
|
m_ColorGradingLutSize: 32
|
||||||
|
m_AllowPostProcessAlphaOutput: 0
|
||||||
m_UseFastSRGBLinearConversion: 0
|
m_UseFastSRGBLinearConversion: 0
|
||||||
m_SupportDataDrivenLensFlare: 1
|
m_SupportDataDrivenLensFlare: 1
|
||||||
m_SupportScreenSpaceLensFlare: 1
|
m_SupportScreenSpaceLensFlare: 1
|
||||||
@@ -98,35 +100,40 @@ MonoBehaviour:
|
|||||||
obsoleteHasProbeVolumes:
|
obsoleteHasProbeVolumes:
|
||||||
m_Keys: []
|
m_Keys: []
|
||||||
m_Values:
|
m_Values:
|
||||||
m_PrefilteringModeMainLightShadows: 1
|
m_PrefilteringModeMainLightShadows: 4
|
||||||
m_PrefilteringModeAdditionalLight: 4
|
m_PrefilteringModeAdditionalLight: 4
|
||||||
m_PrefilteringModeAdditionalLightShadows: 1
|
m_PrefilteringModeAdditionalLightShadows: 0
|
||||||
m_PrefilterXRKeywords: 0
|
m_PrefilterXRKeywords: 1
|
||||||
m_PrefilteringModeForwardPlus: 1
|
m_PrefilteringModeForwardPlus: 0
|
||||||
m_PrefilteringModeDeferredRendering: 1
|
m_PrefilteringModeDeferredRendering: 0
|
||||||
m_PrefilteringModeScreenSpaceOcclusion: 1
|
m_PrefilteringModeScreenSpaceOcclusion: 0
|
||||||
m_PrefilterDebugKeywords: 0
|
m_PrefilterDebugKeywords: 1
|
||||||
m_PrefilterWriteRenderingLayers: 0
|
m_PrefilterWriteRenderingLayers: 1
|
||||||
m_PrefilterHDROutput: 0
|
m_PrefilterHDROutput: 1
|
||||||
m_PrefilterSSAODepthNormals: 0
|
m_PrefilterAlphaOutput: 1
|
||||||
m_PrefilterSSAOSourceDepthLow: 0
|
m_PrefilterSSAODepthNormals: 1
|
||||||
m_PrefilterSSAOSourceDepthMedium: 0
|
m_PrefilterSSAOSourceDepthLow: 1
|
||||||
m_PrefilterSSAOSourceDepthHigh: 0
|
m_PrefilterSSAOSourceDepthMedium: 1
|
||||||
m_PrefilterSSAOInterleaved: 0
|
m_PrefilterSSAOSourceDepthHigh: 1
|
||||||
m_PrefilterSSAOBlueNoise: 0
|
m_PrefilterSSAOInterleaved: 1
|
||||||
m_PrefilterSSAOSampleCountLow: 0
|
m_PrefilterSSAOBlueNoise: 1
|
||||||
m_PrefilterSSAOSampleCountMedium: 0
|
m_PrefilterSSAOSampleCountLow: 1
|
||||||
m_PrefilterSSAOSampleCountHigh: 0
|
m_PrefilterSSAOSampleCountMedium: 1
|
||||||
m_PrefilterDBufferMRT1: 0
|
m_PrefilterSSAOSampleCountHigh: 1
|
||||||
m_PrefilterDBufferMRT2: 0
|
m_PrefilterDBufferMRT1: 1
|
||||||
m_PrefilterDBufferMRT3: 0
|
m_PrefilterDBufferMRT2: 1
|
||||||
m_PrefilterSoftShadowsQualityLow: 0
|
m_PrefilterDBufferMRT3: 1
|
||||||
m_PrefilterSoftShadowsQualityMedium: 0
|
m_PrefilterSoftShadowsQualityLow: 1
|
||||||
m_PrefilterSoftShadowsQualityHigh: 0
|
m_PrefilterSoftShadowsQualityMedium: 1
|
||||||
|
m_PrefilterSoftShadowsQualityHigh: 1
|
||||||
m_PrefilterSoftShadows: 0
|
m_PrefilterSoftShadows: 0
|
||||||
m_PrefilterScreenCoord: 0
|
m_PrefilterScreenCoord: 1
|
||||||
m_PrefilterNativeRenderPass: 0
|
m_PrefilterNativeRenderPass: 1
|
||||||
m_PrefilterUseLegacyLightmaps: 0
|
m_PrefilterUseLegacyLightmaps: 0
|
||||||
|
m_PrefilterBicubicLightmapSampling: 1
|
||||||
|
m_PrefilterReflectionProbeBlending: 1
|
||||||
|
m_PrefilterReflectionProbeBoxProjection: 1
|
||||||
|
m_PrefilterReflectionProbeAtlas: 1
|
||||||
m_ShaderVariantLogLevel: 0
|
m_ShaderVariantLogLevel: 0
|
||||||
m_ShadowCascades: 0
|
m_ShadowCascades: 0
|
||||||
m_Textures:
|
m_Textures:
|
||||||
|
|||||||
@@ -63,7 +63,19 @@ MonoBehaviour:
|
|||||||
- rid: 6152885261028556803
|
- rid: 6152885261028556803
|
||||||
- rid: 7432930701277134848
|
- rid: 7432930701277134848
|
||||||
m_RuntimeSettings:
|
m_RuntimeSettings:
|
||||||
m_List: []
|
m_List:
|
||||||
|
- rid: 7752762179098771456
|
||||||
|
- rid: 7752762179098771457
|
||||||
|
- rid: 7752762179098771459
|
||||||
|
- rid: 7752762179098771461
|
||||||
|
- rid: 7752762179098771462
|
||||||
|
- rid: 7752762179098771464
|
||||||
|
- rid: 7752762179098771466
|
||||||
|
- rid: 7752762179098771468
|
||||||
|
- rid: 7752762179098771472
|
||||||
|
- rid: 7752762179098771476
|
||||||
|
- rid: 3114554777721110529
|
||||||
|
- rid: 3114554777721110530
|
||||||
m_AssetVersion: 8
|
m_AssetVersion: 8
|
||||||
m_ObsoleteDefaultVolumeProfile: {fileID: 0}
|
m_ObsoleteDefaultVolumeProfile: {fileID: 0}
|
||||||
m_RenderingLayerNames:
|
m_RenderingLayerNames:
|
||||||
|
|||||||
@@ -658,10 +658,10 @@
|
|||||||
"m_Expanded": true,
|
"m_Expanded": true,
|
||||||
"m_Position": {
|
"m_Position": {
|
||||||
"serializedVersion": "2",
|
"serializedVersion": "2",
|
||||||
"x": -1654.5001220703125,
|
"x": -1648.0001220703125,
|
||||||
"y": 171.49996948242188,
|
"y": 105.00000762939453,
|
||||||
"width": 110.0,
|
"width": 110.0,
|
||||||
"height": 34.00004577636719
|
"height": 33.999977111816409
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"m_Slots": [
|
"m_Slots": [
|
||||||
@@ -834,9 +834,9 @@
|
|||||||
"m_Expanded": true,
|
"m_Expanded": true,
|
||||||
"m_Position": {
|
"m_Position": {
|
||||||
"serializedVersion": "2",
|
"serializedVersion": "2",
|
||||||
"x": -1507.0001220703125,
|
"x": -1501.0001220703125,
|
||||||
"y": -60.00000762939453,
|
"y": -127.00001525878906,
|
||||||
"width": 123.5,
|
"width": 124.0,
|
||||||
"height": 173.00001525878907
|
"height": 173.00001525878907
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -1284,9 +1284,9 @@
|
|||||||
"m_Expanded": true,
|
"m_Expanded": true,
|
||||||
"m_Position": {
|
"m_Position": {
|
||||||
"serializedVersion": "2",
|
"serializedVersion": "2",
|
||||||
"x": -1507.0001220703125,
|
"x": -1501.0001220703125,
|
||||||
"y": 132.00001525878907,
|
"y": 65.00001525878906,
|
||||||
"width": 118.5,
|
"width": 119.0,
|
||||||
"height": 148.9999542236328
|
"height": 148.9999542236328
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
BIN
Assets/Sprites/Icon.png
Normal file
BIN
Assets/Sprites/Icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 MiB |
143
Assets/Sprites/Icon.png.meta
Normal file
143
Assets/Sprites/Icon.png.meta
Normal file
@@ -0,0 +1,143 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5417d9d7d462af345919661548536f46
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable:
|
||||||
|
- first:
|
||||||
|
213: -7767773165118985166
|
||||||
|
second: Gemini_Generated_Image_u4e5d8u4e5d8u4e5_0
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 13
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
flipGreenChannel: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
ignoreMipmapLimit: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 0
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 0
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
swizzle: 50462976
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites:
|
||||||
|
- serializedVersion: 2
|
||||||
|
name: Gemini_Generated_Image_u4e5d8u4e5d8u4e5_0
|
||||||
|
rect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1024
|
||||||
|
height: 1024
|
||||||
|
alignment: 0
|
||||||
|
pivot: {x: 0, y: 0}
|
||||||
|
border: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
customData:
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
tessellationDetail: -1
|
||||||
|
bones: []
|
||||||
|
spriteID: 23c65453673533490800000000000000
|
||||||
|
internalID: -7767773165118985166
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
outline: []
|
||||||
|
customData:
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spriteCustomMetadata:
|
||||||
|
entries: []
|
||||||
|
nameFileIdTable:
|
||||||
|
Gemini_Generated_Image_u4e5d8u4e5d8u4e5_0: -7767773165118985166
|
||||||
|
mipmapLimitGroupName:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -5,9 +5,9 @@ EditorBuildSettings:
|
|||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_Scenes:
|
m_Scenes:
|
||||||
- enabled: 0
|
- enabled: 1
|
||||||
path: Assets/Scenes/SampleScene.unity
|
path: Assets/Main.unity
|
||||||
guid: 8c9cfa26abfee488c85f1582747f6a02
|
guid: 0e7a0d8a2017542db96f24c7a5928929
|
||||||
m_configObjects:
|
m_configObjects:
|
||||||
com.unity.input.settings.actions: {fileID: -944628639613478452, guid: 2bcd2660ca9b64942af0de543d8d7100, type: 3}
|
com.unity.input.settings.actions: {fileID: -944628639613478452, guid: 2bcd2660ca9b64942af0de543d8d7100, type: 3}
|
||||||
m_UseUCBPForAssetBundles: 0
|
m_UseUCBPForAssetBundles: 0
|
||||||
|
|||||||
@@ -294,7 +294,10 @@ PlayerSettings:
|
|||||||
androidSymbolsSizeThreshold: 800
|
androidSymbolsSizeThreshold: 800
|
||||||
m_BuildTargetIcons: []
|
m_BuildTargetIcons: []
|
||||||
m_BuildTargetPlatformIcons: []
|
m_BuildTargetPlatformIcons: []
|
||||||
m_BuildTargetBatching: []
|
m_BuildTargetBatching:
|
||||||
|
- m_BuildTarget: Standalone
|
||||||
|
m_StaticBatching: 1
|
||||||
|
m_DynamicBatching: 0
|
||||||
m_BuildTargetShaderSettings: []
|
m_BuildTargetShaderSettings: []
|
||||||
m_BuildTargetGraphicsJobs: []
|
m_BuildTargetGraphicsJobs: []
|
||||||
m_BuildTargetGraphicsJobMode: []
|
m_BuildTargetGraphicsJobMode: []
|
||||||
|
|||||||
Reference in New Issue
Block a user