Pre-Version commit - Changed small stuff

This commit is contained in:
TAASONI3 2023-11-25 21:07:06 +01:00
parent 18dfaf7602
commit 005c4e7e66
46 changed files with 3414 additions and 638 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"visualstudiotoolsforunity.vstuc"
]
}

10
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Unity",
"type": "vstuc",
"request": "attach"
}
]
}

108
.vscode/settings.json vendored
View File

@ -1,55 +1,55 @@
{
"files.exclude":
{
"**/.DS_Store":true,
"**/.git":true,
"**/.gitmodules":true,
"**/*.booproj":true,
"**/*.pidb":true,
"**/*.suo":true,
"**/*.user":true,
"**/*.userprefs":true,
"**/*.unityproj":true,
"**/*.dll":true,
"**/*.exe":true,
"**/*.pdf":true,
"**/*.mid":true,
"**/*.midi":true,
"**/*.wav":true,
"**/*.gif":true,
"**/*.ico":true,
"**/*.jpg":true,
"**/*.jpeg":true,
"**/*.png":true,
"**/*.psd":true,
"**/*.tga":true,
"**/*.tif":true,
"**/*.tiff":true,
"**/*.3ds":true,
"**/*.3DS":true,
"**/*.fbx":true,
"**/*.FBX":true,
"**/*.lxo":true,
"**/*.LXO":true,
"**/*.ma":true,
"**/*.MA":true,
"**/*.obj":true,
"**/*.OBJ":true,
"**/*.asset":true,
"**/*.cubemap":true,
"**/*.flare":true,
"**/*.mat":true,
"**/*.meta":true,
"**/*.prefab":true,
"**/*.unity":true,
"build/":true,
"Build/":true,
"Library/":true,
"library/":true,
"obj/":true,
"Obj/":true,
"ProjectSettings/":true,
"temp/":true,
"Temp/":true
}
{
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.gitmodules": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.asset": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"ProjectSettings/": true,
"temp/": true,
"Temp/": true
},
"dotnet.defaultSolution": "TalesOfNovariel.sln"
}

View File

@ -23,6 +23,7 @@ MonoBehaviour:
m_SerializedLabels:
- Locale-en
- Preload
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 1
m_Settings: {fileID: 11400000, guid: 32ad8ebbbed827b67a2ab07fb07a244f, type: 2}
m_SchemaSet:

View File

@ -23,6 +23,7 @@ MonoBehaviour:
m_SerializedLabels:
- Locale-de
- Preload
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 1
m_Settings: {fileID: 11400000, guid: 32ad8ebbbed827b67a2ab07fb07a244f, type: 2}
m_SchemaSet:

View File

@ -21,10 +21,12 @@ MonoBehaviour:
m_Address: Assets/Locals/AssetTable/MyAssets Shared Data.asset
m_ReadOnly: 1
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 493a625c00a76ca27985d7f7e8d2cb79
m_Address: Assets/Locals/StringTable/MyTexts Shared Data.asset
m_ReadOnly: 1
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 1
m_Settings: {fileID: 11400000, guid: 32ad8ebbbed827b67a2ab07fb07a244f, type: 2}
m_SchemaSet:

View File

@ -22,11 +22,13 @@ MonoBehaviour:
m_ReadOnly: 1
m_SerializedLabels:
- Locale
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 0aac76c5240b89aeebbf4ec7cdffc00d
m_Address: English (en)
m_ReadOnly: 1
m_SerializedLabels:
- Locale
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 1
m_Settings: {fileID: 11400000, guid: 32ad8ebbbed827b67a2ab07fb07a244f, type: 2}
m_SchemaSet:

View File

@ -23,6 +23,7 @@ MonoBehaviour:
m_SerializedLabels:
- Locale-en
- Preload
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 1
m_Settings: {fileID: 11400000, guid: 32ad8ebbbed827b67a2ab07fb07a244f, type: 2}
m_SchemaSet:

View File

@ -23,6 +23,7 @@ MonoBehaviour:
m_SerializedLabels:
- Locale-de
- Preload
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 1
m_Settings: {fileID: 11400000, guid: 32ad8ebbbed827b67a2ab07fb07a244f, type: 2}
m_SchemaSet:

BIN
Assets/IMG/Icon_Plus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

View File

@ -0,0 +1,123 @@
fileFormatVersion: 2
guid: 54c2c1145a8d8c46e893f76e8edbde4a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
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
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 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: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
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
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/New Terrain.asset Normal file

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b7f5bf26418e324a69fbeb8e0fe04a16
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -27,13 +27,13 @@ Transform:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4852758362040146526}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 1.0000002, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalPosition: {x: 0, y: 1, z: 0}
m_LocalScale: {x: 10, y: 10, z: 10}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &9204369440232886081
MeshFilter:
@ -93,9 +93,17 @@ MeshCollider:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4852758362040146526}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 4
serializedVersion: 5
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: -5495902117074765545, guid: 0690a27c7b2fa9ee2858c30054d07730, type: 3}
@ -106,10 +114,21 @@ Rigidbody:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4852758362040146526}
serializedVersion: 2
serializedVersion: 4
m_Mass: 10
m_Drag: 0
m_AngularDrag: 0.05
m_CenterOfMass: {x: 0, y: 0, z: 0}
m_InertiaTensor: {x: 1, y: 1, z: 1}
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_ImplicitCom: 1
m_ImplicitTensor: 1
m_UseGravity: 1
m_IsKinematic: 0
m_Interpolate: 0

BIN
Assets/Prefabs/rock2.fbx Normal file

Binary file not shown.

View File

@ -0,0 +1,109 @@
fileFormatVersion: 2
guid: a841290b71f484272994f82eec39daeb
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 1
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -116,8 +116,8 @@ public class AudioHandler : MonoBehaviour
string result = "";
float music = GameObject.Find("slideMusic").GetComponent<Slider>().value;
float effects = GameObject.Find("slideEffects").GetComponent<Slider>().value;
result = result + TextHandler.getText("music") + ":" + music + "\r\n";
result = result + TextHandler.getText("effects") + ":" + effects;
result = result + "Music:" + music + "\r\n";
result = result + "Effects:" + effects;
return result;
}
}

View File

@ -52,7 +52,7 @@ public class TextHandler : MonoBehaviour
int.Parse(parts[i]);
result += parts[i] + " ";
}
catch(Exception ex){
catch(Exception){
if(parts[i].Contains("/")){
result += parts[i] + " ";
}

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 51674c35e02cf3b92ab3c604f5359f2a
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 76682d815193b9b41958835c6f85f98c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 708b71484eb134b679733d6faf5be21d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 751c5cacb250e75659f0d758a42a016d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6a8efd3ad46a629fb871a2cb2d93566d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 0a52adae5d772f7d0bfd83e0289b0ba3
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b10cedcc8209111bebc4e847fcf35da0
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 51aa34e911071054887b24683e3e4458
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 15600000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,16 +1,17 @@
{
"dependencies": {
"com.rlabrecque.steamworks.net": "https://github.com/rlabrecque/Steamworks.NET.git?path=/com.rlabrecque.steamworks.net#20.1.0",
"com.unity.collab-proxy": "2.0.1",
"com.unity.ide.rider": "3.0.18",
"com.unity.ide.visualstudio": "2.0.17",
"com.unity.ai.navigation": "1.1.5",
"com.unity.collab-proxy": "2.2.0",
"com.unity.ide.rider": "3.0.26",
"com.unity.ide.visualstudio": "2.0.22",
"com.unity.ide.vscode": "1.2.5",
"com.unity.inputsystem": "1.5.1",
"com.unity.localization": "1.3.2",
"com.unity.nuget.newtonsoft-json": "3.1.0",
"com.unity.test-framework": "1.1.31",
"com.unity.inputsystem": "1.7.0",
"com.unity.localization": "1.4.4",
"com.unity.nuget.newtonsoft-json": "3.2.1",
"com.unity.test-framework": "1.1.33",
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.4",
"com.unity.timeline": "1.7.6",
"com.unity.toolchain.linux-x86_64": "2.0.4",
"com.unity.ugui": "1.0.0",
"com.unity.modules.ai": "1.0.0",

View File

@ -8,11 +8,11 @@
"hash": "53d17180582752d7d8c9a757742da3a52dfc33d4"
},
"com.unity.addressables": {
"version": "1.19.19",
"version": "1.21.19",
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.scriptablebuildpipeline": "1.19.6",
"com.unity.scriptablebuildpipeline": "1.21.21",
"com.unity.modules.assetbundle": "1.0.0",
"com.unity.modules.imageconversion": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
@ -21,8 +21,17 @@
},
"url": "https://packages.unity.com"
},
"com.unity.ai.navigation": {
"version": "1.1.5",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.modules.ai": "1.0.0"
},
"url": "https://packages.unity.com"
},
"com.unity.collab-proxy": {
"version": "2.0.1",
"version": "2.2.0",
"depth": 0,
"source": "registry",
"dependencies": {},
@ -36,7 +45,7 @@
"url": "https://packages.unity.com"
},
"com.unity.ide.rider": {
"version": "3.0.18",
"version": "3.0.26",
"depth": 0,
"source": "registry",
"dependencies": {
@ -45,7 +54,7 @@
"url": "https://packages.unity.com"
},
"com.unity.ide.visualstudio": {
"version": "2.0.17",
"version": "2.0.22",
"depth": 0,
"source": "registry",
"dependencies": {
@ -61,7 +70,7 @@
"url": "https://packages.unity.com"
},
"com.unity.inputsystem": {
"version": "1.5.1",
"version": "1.7.0",
"depth": 0,
"source": "registry",
"dependencies": {
@ -70,24 +79,24 @@
"url": "https://packages.unity.com"
},
"com.unity.localization": {
"version": "1.3.2",
"version": "1.4.4",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.addressables": "1.19.19",
"com.unity.nuget.newtonsoft-json": "2.0.2"
"com.unity.addressables": "1.21.8",
"com.unity.nuget.newtonsoft-json": "3.0.2"
},
"url": "https://packages.unity.com"
},
"com.unity.nuget.newtonsoft-json": {
"version": "3.1.0",
"version": "3.2.1",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.scriptablebuildpipeline": {
"version": "1.20.1",
"version": "1.21.21",
"depth": 2,
"source": "registry",
"dependencies": {},
@ -110,7 +119,7 @@
"url": "https://packages.unity.com"
},
"com.unity.test-framework": {
"version": "1.1.31",
"version": "1.1.33",
"depth": 0,
"source": "registry",
"dependencies": {
@ -130,7 +139,7 @@
"url": "https://packages.unity.com"
},
"com.unity.timeline": {
"version": "1.6.4",
"version": "1.7.6",
"depth": 0,
"source": "registry",
"dependencies": {
@ -292,17 +301,6 @@
"version": "1.0.0",
"depth": 0,
"source": "builtin",
"dependencies": {
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.uielementsnative": "1.0.0"
}
},
"com.unity.modules.uielementsnative": {
"version": "1.0.0",
"depth": 1,
"source": "builtin",
"dependencies": {
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.imgui": "1.0.0",

View File

@ -18,4 +18,4 @@ MonoBehaviour:
m_AssetTable:
m_TableReference:
m_TableCollectionName: GUID:be998aea26820a30aa2217983d31b9c7
m_TrackingChanges: 0
m_TrackingChanges: 1

View File

@ -1,2 +1,2 @@
m_EditorVersion: 2021.3.22f1
m_EditorVersionWithRevision: 2021.3.22f1 (b6c551784ba3)
m_EditorVersion: 2022.3.14f1
m_EditorVersionWithRevision: 2022.3.14f1 (eff2de9070d8)

View File

@ -9,6 +9,9 @@ EditorUserSettings:
value: 56060d5e5301505e0f5a5a2344200944154e4128792a2763297b4a30b2e2363a
flags: 0
RecentlyUsedSceneGuid-1:
value: 05550c040100590e5c0c097446220f164e164d732a7072682c2a1f31b7b7666c
flags: 0
RecentlyUsedSceneGuid-2:
value: 5a5757560101590a5d0c0e24427b5d44434e4c7a7b7a23677f2b4565b7b5353a
flags: 0
RecentlyUsedScenePath-0:

View File

@ -20,11 +20,11 @@ MonoBehaviour:
x: 0
y: 30
width: 1920
height: 966
height: 970
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 101154
controlID: 50
--- !u!114 &2
MonoBehaviour:
m_ObjectHideFlags: 52
@ -46,9 +46,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 1920
y: 771
width: 1518
height: 268
y: 772
width: 1517
height: 267
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -59,30 +64,30 @@ MonoBehaviour:
m_ClassNames: []
m_AssetLabels: []
m_AssetBundleNames: []
m_VersionControlStates: []
m_SoftLockControlStates: []
m_ReferencingInstanceIDs:
m_SceneHandles:
m_ShowAllHits: 0
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- Assets/Scenes
- Assets/Scripts/Testing
m_Globs: []
m_OriginalText:
m_ImportLogFlags: 0
m_FilterByTypeIntersection: 0
m_ViewMode: 1
m_StartGridSize: 64
m_LastFolders:
- Assets/Scenes
- Assets/Scripts/Testing
m_LastFoldersGridSize: -1
m_LastProjectPath: /home/nicola/Schreibtisch/TalesOfNovariel
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 60}
m_SelectedIDs: bc5d0000
m_LastClickedID: 23996
m_ExpandedIDs: 000000001c5d0000b05d0000be5d000000ca9a3b
scrollPos: {x: 0, y: 185}
m_SelectedIDs: d49b0000
m_LastClickedID: 39892
m_ExpandedIDs: 0000000024060000600600007406000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -110,7 +115,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 000000001c5d00001e5d0000
m_ExpandedIDs: 000000002406000074060000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -135,9 +140,9 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_ListAreaState:
m_SelectedInstanceIDs: 604f0800
m_LastClickedInstanceID: 544608
m_HadKeyboardFocusLastEvent: 1
m_SelectedInstanceIDs: 14e2feff
m_LastClickedInstanceID: -73196
m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: c6230000d81c070080fe0000287f010000000000b25b0000005d0000
m_RenameOverlay:
m_UserAcceptedRename: 0
@ -185,12 +190,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1519
height: 966
m_MinSize: {x: 200, y: 200}
width: 1518
height: 970
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 101155
controlID: 51
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
@ -210,12 +215,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1519
height: 677
m_MinSize: {x: 200, y: 100}
width: 1518
height: 682
m_MinSize: {x: 200, y: 50}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 101204
controlID: 20
--- !u!114 &5
MonoBehaviour:
m_ObjectHideFlags: 52
@ -234,7 +239,7 @@ MonoBehaviour:
x: 0
y: 0
width: 306
height: 677
height: 682
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 6}
@ -263,9 +268,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 1920
y: 94
y: 90
width: 305
height: 656
height: 661
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -274,9 +284,9 @@ MonoBehaviour:
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 604f0800
m_LastClickedID: 0
m_ExpandedIDs: bed6f7ff0ce9f7ff6ae9f7ff72ecf7ff84ecf7ffe0eef7ffcafdf7ff8000f8ff6602f8ff7e03f8ffde03f8ff0e07f8ff1607f8ff5807f8ff640bf8ffb40cf8ff180df8ff3810f8ff4a10f8ffcc12f8ffb41af8ff581cf8ff9222f8ffbc38f8ff4e3bf8ff0e3cf8fff85ff8ff1872f8ff20b6f8ffc6d0f8ff74a5fbff86bafbffec09fcffc852fcff5c86fcfffe92fcff34a0fcff968efeffe28efeff30fbfffff4ffffff3e56000096560000d6560000ee56000016570000205700003e57000094570000325800005c580000725800007a580000c8580000e25800000a5900001c5900004a59000054590000de590000025a00006a5a00007e5a0000885a0000c25a0000cc5a0000f65a0000125b0000aa5b0000f45b0000285c0000305c0000385c00006a9900006a9a0000bc9a0000d09b0000e0940200da97020046980200e0c90200e4cb0200b2cc0200d8cd020022cf020026cb030062d20300e6d30300fef103003af90300befa03001e1204005a190400de1a0400ae2b0400ea3204006e3404000a530400449f0400909f04005e410500104205001843050044430500624305000044050014440500e24405008a45050094450500d2450500dc45050008460500524705005a470500fe6f05005270050076720500ec730500ee740500e275050034760500f07605000277050062770500207805006478050064790500247a05002e7a0500207b0500327b0500d4e70500a6ea0500cceb050016ed05001eed050092fa050010fb050064fd05008afe050048ff0500d4ff0500a0310600783606005e380600be3806006a390600c239060056630600da6306006866060080680600106906003a7f060052800600aae80600826207007a6b0700fa6e0700906f070076fc07006e050800ae490800
m_SelectedIDs: 14e2feff
m_LastClickedID: -73196
m_ExpandedIDs: 14e2feffb0eafeff
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -292,7 +302,7 @@ MonoBehaviour:
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 5}
m_ClientGUIView: {fileID: 0}
m_SearchString:
m_ExpandedScenes: []
m_CurrenRootInstanceID: 0
@ -310,26 +320,26 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: GameView
m_Name: SceneView
m_EditorClassIdentifier:
m_Children: []
m_Position:
serializedVersion: 2
x: 306
y: 0
width: 1213
height: 677
m_MinSize: {x: 102, y: 121}
width: 1212
height: 682
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 9}
m_ActualView: {fileID: 8}
m_Panes:
- {fileID: 8}
- {fileID: 9}
- {fileID: 10}
- {fileID: 11}
- {fileID: 12}
m_Selected: 1
m_LastSelected: 0
m_Selected: 0
m_LastSelected: 1
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@ -351,9 +361,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 2226
y: 94
width: 1211
height: 656
y: 90
width: 1210
height: 661
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -363,12 +378,14 @@ MonoBehaviour:
floating: 0
collapsed: 0
displayed: 1
snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: -101, y: -26}
snapOffset: {x: -166, y: -26}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 3
id: Tool Settings
index: 0
layout: 1
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 0
containerId: overlay-toolbar__top
floating: 0
@ -380,6 +397,8 @@ MonoBehaviour:
id: unity-grid-and-snap-toolbar
index: 1
layout: 1
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-toolbar__top
floating: 0
@ -391,6 +410,8 @@ MonoBehaviour:
id: unity-scene-view-toolbar
index: 0
layout: 1
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-toolbar__top
floating: 0
@ -402,6 +423,8 @@ MonoBehaviour:
id: unity-search-toolbar
index: 1
layout: 1
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 0
containerId: overlay-container--left
floating: 0
@ -413,6 +436,8 @@ MonoBehaviour:
id: unity-transform-toolbar
index: 0
layout: 2
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 0
containerId: overlay-container--left
floating: 0
@ -424,6 +449,8 @@ MonoBehaviour:
id: unity-component-tools
index: 1
layout: 2
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 0
containerId: overlay-container--right
floating: 0
@ -435,6 +462,8 @@ MonoBehaviour:
id: Orientation
index: 0
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -446,6 +475,8 @@ MonoBehaviour:
id: Scene View/Light Settings
index: 0
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -457,6 +488,8 @@ MonoBehaviour:
id: Scene View/Camera
index: 1
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -466,8 +499,10 @@ MonoBehaviour:
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/Cloth Constraints
index: 2
index: 1
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -477,8 +512,10 @@ MonoBehaviour:
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/Cloth Collisions
index: 3
index: 2
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -490,6 +527,8 @@ MonoBehaviour:
id: Scene View/Navmesh Display
index: 4
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -501,6 +540,8 @@ MonoBehaviour:
id: Scene View/Agent Display
index: 5
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -512,6 +553,8 @@ MonoBehaviour:
id: Scene View/Obstacle Display
index: 6
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -521,8 +564,10 @@ MonoBehaviour:
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/Occlusion Culling
index: 7
index: 3
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -532,8 +577,10 @@ MonoBehaviour:
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/Physics Debugger
index: 8
index: 4
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -543,8 +590,10 @@ MonoBehaviour:
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/Scene Visibility
index: 9
index: 5
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -554,8 +603,10 @@ MonoBehaviour:
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/Particles
index: 10
index: 6
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -567,6 +618,8 @@ MonoBehaviour:
id: Scene View/Tilemap
index: 11
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
@ -578,6 +631,47 @@ MonoBehaviour:
id: Scene View/Tilemap Palette Helper
index: 12
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
collapsed: 0
displayed: 1
snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: AINavigationOverlay
index: 7
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
collapsed: 0
displayed: 0
snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: Scene View/TrailRenderer
index: 8
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
- dockPosition: 1
containerId: overlay-container--right
floating: 0
collapsed: 0
displayed: 1
snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
id: UnityEditor.SceneViewCameraOverlay
index: 9
layout: 4
size: {x: 0, y: 0}
sizeOverriden: 0
m_OverlaysVisible: 1
m_WindowGUID: b85945ae8dd2cea46915e8777ee5c800
m_Gizmos: 1
@ -589,9 +683,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: 951.7466, y: 478.40512, z: -758.90234}
m_Target: {x: -343.32404, y: -231.49773, z: 309.28967}
speed: 2
m_Value: {x: 951.7466, y: 478.40512, z: -758.90234}
m_Value: {x: -343.32404, y: -231.49773, z: 309.28967}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@ -599,7 +693,6 @@ MonoBehaviour:
section: Shading Mode
m_ValidateTrueMetals: 0
m_DoValidateTrueMetals: 0
m_ExposureSliderValue: 0
m_SceneViewState:
m_AlwaysRefresh: 0
showFog: 1
@ -638,13 +731,13 @@ MonoBehaviour:
m_GridAxis: 1
m_gridOpacity: 0.5
m_Rotation:
m_Target: {x: -0.05109402, y: 0.15945746, z: -0.008060311, w: -0.9857905}
m_Target: {x: -0.21113704, y: 0.47118843, z: -0.117289536, w: -0.8482635}
speed: 2
m_Value: {x: -0.051096957, y: 0.15946662, z: -0.008060774, w: -0.9858471}
m_Value: {x: -0.21114704, y: 0.47121075, z: -0.117295094, w: -0.8483037}
m_Size:
m_Target: 239.48093
m_Target: 287.742
speed: 2
m_Value: 239.48093
m_Value: 287.742
m_Ortho:
m_Target: 0
speed: 2
@ -690,9 +783,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 2226
y: 94
width: 1211
height: 656
y: 90
width: 1210
height: 661
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -740,23 +838,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 1211
height: 635
m_Scale: {x: 0.587963, y: 0.587963}
m_Translation: {x: 605.5, y: 317.5}
width: 1210
height: 640
m_Scale: {x: 0.5925926, y: 0.5925926}
m_Translation: {x: 605, y: 320}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -1029.8268
x: -1020.9375
y: -540
width: 2059.6536
width: 2041.875
height: 1080
m_MinimalGUI: 1
m_defaultScale: 0.587963
m_LastWindowPixelSize: {x: 1211, y: 656}
m_defaultScale: 0.5925926
m_LastWindowPixelSize: {x: 1210, y: 661}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@ -783,9 +881,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 2226
y: 94
width: 1211
height: 656
y: 90
width: 1210
height: 661
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1350,9 +1453,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 2226
y: 94
width: 1222
height: 682
y: 90
width: 1210
height: 661
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1402,8 +1510,13 @@ MonoBehaviour:
serializedVersion: 2
x: 2226
y: 94
width: 1214
width: 1211
height: 656
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1425,9 +1538,9 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 677
width: 1519
height: 289
y: 682
width: 1518
height: 288
m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 2}
@ -1457,9 +1570,14 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 1920
y: 771
width: 1518
height: 268
y: 772
width: 1517
height: 267
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1482,14 +1600,14 @@ MonoBehaviour:
- {fileID: 18}
m_Position:
serializedVersion: 2
x: 1519
x: 1518
y: 0
width: 401
height: 966
width: 402
height: 970
m_MinSize: {x: 100, y: 200}
m_MaxSize: {x: 8096, y: 16192}
vertical: 1
controlID: 101226
controlID: 109
--- !u!114 &16
MonoBehaviour:
m_ObjectHideFlags: 52
@ -1507,7 +1625,7 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 401
width: 402
height: 136
m_MinSize: {x: 101, y: 121}
m_MaxSize: {x: 4001, y: 4021}
@ -1536,10 +1654,15 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 3439
y: 94
width: 400
x: 3438
y: 90
width: 401
height: 115
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1562,10 +1685,10 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 136
width: 401
height: 830
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
width: 402
height: 834
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 19}
m_Panes:
- {fileID: 19}
@ -1591,10 +1714,15 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 3439
y: 230
width: 400
height: 809
x: 3438
y: 226
width: 401
height: 813
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1607,7 +1735,7 @@ MonoBehaviour:
m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview
m_LastInspectedObjectInstanceID: -1
m_LastVerticalScrollValue: 55
m_LastVerticalScrollValue: 0
m_GlobalObjectId:
m_InspectorMode: 0
m_LockTracker:

View File

@ -15,11 +15,11 @@ MonoBehaviour:
m_PixelRect:
serializedVersion: 2
x: 0
y: 64
y: 60
width: 1920
height: 989
height: 992
m_ShowMode: 4
m_Title: Hierarchy
m_Title: Project
m_RootView: {fileID: 2}
m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000}
@ -45,7 +45,7 @@ MonoBehaviour:
x: 0
y: 0
width: 1920
height: 989
height: 992
m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000}
m_UseTopView: 1
@ -90,7 +90,7 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 969
y: 972
width: 1920
height: 20
m_MinSize: {x: 0, y: 0}
@ -115,11 +115,11 @@ MonoBehaviour:
x: 0
y: 30
width: 1920
height: 939
height: 942
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 84
controlID: 47
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
@ -140,11 +140,11 @@ MonoBehaviour:
x: 0
y: 0
width: 1518
height: 939
height: 942
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 85
controlID: 48
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@ -165,11 +165,11 @@ MonoBehaviour:
x: 0
y: 0
width: 1518
height: 658
height: 660
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 86
controlID: 39
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@ -188,7 +188,7 @@ MonoBehaviour:
x: 0
y: 0
width: 306
height: 658
height: 660
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 15}
@ -214,7 +214,7 @@ MonoBehaviour:
x: 306
y: 0
width: 1212
height: 658
height: 660
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 16}
@ -242,9 +242,9 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 658
y: 660
width: 1518
height: 281
height: 282
m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 14}
@ -273,11 +273,11 @@ MonoBehaviour:
x: 1518
y: 0
width: 402
height: 939
height: 942
m_MinSize: {x: 100, y: 200}
m_MaxSize: {x: 8096, y: 16192}
vertical: 1
controlID: 44
controlID: 24
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
@ -322,7 +322,7 @@ MonoBehaviour:
x: 0
y: 132
width: 402
height: 807
height: 810
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 23}
@ -351,9 +351,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 779
y: 778
width: 1517
height: 260
height: 261
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -372,22 +372,22 @@ MonoBehaviour:
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- Assets/Scripts/UI
- Assets/IMG
m_Globs: []
m_OriginalText:
m_ViewMode: 1
m_StartGridSize: 64
m_LastFolders:
- Assets/Scripts/UI
- Assets/IMG
m_LastFoldersGridSize: -1
m_LastProjectPath: /home/nicola/Schreibtisch/TalesOfNovariel
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 192}
m_SelectedIDs: 28690000
m_LastClickedID: 26920
m_ExpandedIDs: 000000002a6800002c6800000a69000000ca9a3b
scrollPos: {x: 0, y: 79}
m_SelectedIDs: e4670000
m_LastClickedID: 26596
m_ExpandedIDs: 00000000e2670000e467000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -415,7 +415,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 000000002a6800002c680000
m_ExpandedIDs: 00000000e2670000e4670000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -467,7 +467,7 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_NewAssetIndexInList: -1
m_ScrollPosition: {x: 0, y: 0}
m_ScrollPosition: {x: 0, y: 86}
m_GridSize: 64
m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 335
@ -492,9 +492,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 121
y: 118
width: 305
height: 637
height: 639
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -503,8 +503,8 @@ MonoBehaviour:
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 94620000
m_LastClickedID: 25236
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 34fbffff
m_RenameOverlay:
m_UserAcceptedRename: 0
@ -550,9 +550,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 306
y: 121
y: 118
width: 1210
height: 637
height: 639
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -788,9 +788,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: 960, y: 481.5, z: 0}
m_Target: {x: 947.01526, y: 452.82715, z: -50.509277}
speed: 2
m_Value: {x: 960, y: 481.5, z: 0}
m_Value: {x: 947.01526, y: 452.82715, z: -50.509277}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@ -837,13 +837,13 @@ MonoBehaviour:
m_GridAxis: 1
m_gridOpacity: 0.5
m_Rotation:
m_Target: {x: 0.019645238, y: 0.019715546, z: -0.00078249566, w: 0.9995659}
m_Target: {x: -0.014837916, y: -0.0042641773, z: -0.00045595775, w: 0.9998342}
speed: 2
m_Value: {x: 0.01964615, y: 0.01971646, z: -0.0007825319, w: 0.9996123}
m_Value: {x: 0.014837917, y: 0.0042641773, z: 0.00045595778, w: -0.9998342}
m_Size:
m_Target: 404.61365
m_Target: 666.5918
speed: 2
m_Value: 404.61365
m_Value: 637.8869
m_Ortho:
m_Target: 0
speed: 2
@ -888,10 +888,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 2226
y: 94
width: 1211
height: 656
x: 306
y: 118
width: 1210
height: 639
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -930,7 +930,7 @@ MonoBehaviour:
m_HSlider: 0
m_VSlider: 0
m_IgnoreScrollWheelUntilClicked: 0
m_EnableMouseInput: 0
m_EnableMouseInput: 1
m_EnableSliderZoomHorizontal: 0
m_EnableSliderZoomVertical: 0
m_UniformScale: 1
@ -939,23 +939,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 1211
height: 635
m_Scale: {x: 0.587963, y: 0.587963}
m_Translation: {x: 605.5, y: 317.5}
width: 1210
height: 618
m_Scale: {x: 0.57222223, y: 0.57222223}
m_Translation: {x: 605, y: 309}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -1029.8268
x: -1057.2815
y: -540
width: 2059.6536
width: 2114.563
height: 1080
m_MinimalGUI: 1
m_defaultScale: 0.587963
m_LastWindowPixelSize: {x: 1211, y: 656}
m_defaultScale: 0.57222223
m_LastWindowPixelSize: {x: 1210, y: 639}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@ -1628,10 +1628,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 1920
y: 771
x: 0
y: 778
width: 1517
height: 268
height: 261
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@ -1658,7 +1658,7 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 1518
y: 121
y: 118
width: 401
height: 111
m_ViewDataDictionary: {fileID: 0}
@ -1687,9 +1687,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 1518
y: 253
y: 250
width: 401
height: 786
height: 789
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
Resolution:1
Mode:0
Language:de
Musik:0.1054875
Effekte:0.5
Music:0.2077923
Effects:0.7093654
SensitivityMouse:1
SensitivityController:2