Compare commits
37 Commits
213e894640
...
MainMenu
| Author | SHA1 | Date | |
|---|---|---|---|
| 13ea77d40e | |||
| ffed0c4714 | |||
| b6cfcb236e | |||
| 3b4f269905 | |||
| d80ac111c2 | |||
| dd3da6dd60 | |||
| 4fdfdea5cf | |||
| 32c7589ab3 | |||
| 44155796d0 | |||
| 5b166244b2 | |||
| 114a0d3997 | |||
| ce6e4450e6 | |||
| 95f2f63259 | |||
| dc5ed7d49f | |||
|
|
2fadf819cc | ||
| ff9a2cebd3 | |||
| e14a3ddf2b | |||
| 5bd6eabec6 | |||
| f2ebd125f3 | |||
| 2fdfabe2b8 | |||
| 4b8e4c69f5 | |||
| e086bedb19 | |||
| 13300e885b | |||
| a73f75ffa4 | |||
| a04ce40779 | |||
| 94a40e3d14 | |||
| eeaf092780 | |||
| fc22d4f544 | |||
| 3b36d53b39 | |||
| b1fc3ac24a | |||
| 655d378dbb | |||
| 39b42e1e90 | |||
| 0cb7d4b64d | |||
| 1c103a1496 | |||
| 1618ecd432 | |||
| ed6347e6bc | |||
| 59b6708437 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -186,7 +186,6 @@ StyleCopReport.xml
|
|||||||
*_p.c
|
*_p.c
|
||||||
*_h.h
|
*_h.h
|
||||||
*.ilk
|
*.ilk
|
||||||
*.meta
|
|
||||||
*.obj
|
*.obj
|
||||||
*.iobj
|
*.iobj
|
||||||
*.pch
|
*.pch
|
||||||
@@ -304,8 +303,6 @@ PublishScripts/
|
|||||||
*.nupkg
|
*.nupkg
|
||||||
# NuGet Symbol Packages
|
# NuGet Symbol Packages
|
||||||
*.snupkg
|
*.snupkg
|
||||||
# The packages folder can be ignored because of Package Restore
|
|
||||||
**/[Pp]ackages/*
|
|
||||||
# except build/, which is used as an MSBuild target.
|
# except build/, which is used as an MSBuild target.
|
||||||
!**/[Pp]ackages/build/
|
!**/[Pp]ackages/build/
|
||||||
# Uncomment if necessary however generally it will be regenerated when needed
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
|||||||
5
.vscode/extensions.json
vendored
5
.vscode/extensions.json
vendored
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"recommendations": [
|
|
||||||
"visualstudiotoolsforunity.vstuc"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
10
.vscode/launch.json
vendored
10
.vscode/launch.json
vendored
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "Attach to Unity",
|
|
||||||
"type": "vstuc",
|
|
||||||
"request": "attach"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
60
.vscode/settings.json
vendored
60
.vscode/settings.json
vendored
@@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"files.exclude": {
|
|
||||||
"**/.DS_Store": true,
|
|
||||||
"**/.git": true,
|
|
||||||
"**/.vs": true,
|
|
||||||
"**/.gitmodules": true,
|
|
||||||
"**/.vsconfig": 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,
|
|
||||||
"Logs/": true,
|
|
||||||
"logs/": true,
|
|
||||||
"ProjectSettings/": true,
|
|
||||||
"UserSettings/": true,
|
|
||||||
"temp/": true,
|
|
||||||
"Temp/": true
|
|
||||||
},
|
|
||||||
"dotnet.defaultSolution": "NegrBagrJaromirJagr_git - Copy (3).sln"
|
|
||||||
}
|
|
||||||
6
.vsconfig
Normal file
6
.vsconfig
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0",
|
||||||
|
"components": [
|
||||||
|
"Microsoft.VisualStudio.Workload.ManagedGame"
|
||||||
|
]
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,46 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!114 &-4008054574566821997
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 2
|
|
||||||
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: 11500000, guid: 536372c49e1ca914d822849d36de938c, type: 3}
|
|
||||||
m_Name: Standalone Providers
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_AutomaticLoading: 0
|
|
||||||
m_AutomaticRunning: 0
|
|
||||||
m_Loaders: []
|
|
||||||
--- !u!114 &-1024531111154556285
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 2
|
|
||||||
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: 11500000, guid: 179fc3111e144bc4688dca4038b3265d, type: 3}
|
|
||||||
m_Name: Standalone Settings
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_LoaderManagerInstance: {fileID: -4008054574566821997}
|
|
||||||
m_InitManagerOnStart: 1
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 2
|
|
||||||
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: 11500000, guid: cb0ece14d1f711a4fb9325ca819dee95, type: 3}
|
|
||||||
m_Name: AdaptivePerformanceGeneralSettings
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
Keys: 01000000
|
|
||||||
Values:
|
|
||||||
- {fileID: -1024531111154556285}
|
|
||||||
@@ -1,316 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 2
|
|
||||||
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: 11500000, guid: b592865877cb54284a5d1d88aec9cfbb, type: 3}
|
|
||||||
m_Name: Simulator Provider Settings
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Logging: 1
|
|
||||||
m_AutomaticPerformanceModeEnabled: 1
|
|
||||||
m_AutomaticGameModeEnabled: 0
|
|
||||||
m_EnableBoostOnStartup: 1
|
|
||||||
m_StatsLoggingFrequencyInFrames: 50
|
|
||||||
m_IndexerSettings:
|
|
||||||
m_Active: 1
|
|
||||||
m_ThermalActionDelay: 10
|
|
||||||
m_PerformanceActionDelay: 4
|
|
||||||
m_ScalerSettings:
|
|
||||||
m_AdaptiveFramerate:
|
|
||||||
m_Name: Adaptive Framerate
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 7
|
|
||||||
m_MaxLevel: 45
|
|
||||||
m_MinBound: 15
|
|
||||||
m_MaxBound: 60
|
|
||||||
m_AdaptiveResolution:
|
|
||||||
m_Name: Adaptive Resolution
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 6
|
|
||||||
m_MaxLevel: 9
|
|
||||||
m_MinBound: 0.5
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveBatching:
|
|
||||||
m_Name: Adaptive Batching
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveLOD:
|
|
||||||
m_Name: Adaptive LOD
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0.4
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveLut:
|
|
||||||
m_Name: Adaptive Lut
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 3
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveMSAA:
|
|
||||||
m_Name: Adaptive MSAA
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 6
|
|
||||||
m_MaxLevel: 2
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowCascade:
|
|
||||||
m_Name: Adaptive Shadow Cascade
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 3
|
|
||||||
m_MaxLevel: 2
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowDistance:
|
|
||||||
m_Name: Adaptive Shadow Distance
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0.15
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowmapResolution:
|
|
||||||
m_Name: Adaptive Shadowmap Resolution
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0.15
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowQuality:
|
|
||||||
m_Name: Adaptive Shadow Quality
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 3
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveSorting:
|
|
||||||
m_Name: Adaptive Sorting
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveTransparency:
|
|
||||||
m_Name: Adaptive Transparency
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveViewDistance:
|
|
||||||
m_Name: Adaptive View Distance
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 40
|
|
||||||
m_MinBound: 50
|
|
||||||
m_MaxBound: 1000
|
|
||||||
m_AdaptivePhysics:
|
|
||||||
m_Name: Adaptive Physics
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 5
|
|
||||||
m_MinBound: 0.5
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveDecals:
|
|
||||||
m_Name: Adaptive Decals
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 20
|
|
||||||
m_MinBound: 0.01
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveLayerCulling:
|
|
||||||
m_Name: Adaptive Layer Culling
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 40
|
|
||||||
m_MinBound: 0.01
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_scalerProfileList:
|
|
||||||
- m_AdaptiveFramerate:
|
|
||||||
m_Name: Adaptive Framerate
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 7
|
|
||||||
m_MaxLevel: 45
|
|
||||||
m_MinBound: 15
|
|
||||||
m_MaxBound: 60
|
|
||||||
m_AdaptiveResolution:
|
|
||||||
m_Name: Adaptive Resolution
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 6
|
|
||||||
m_MaxLevel: 9
|
|
||||||
m_MinBound: 0.5
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveBatching:
|
|
||||||
m_Name: Adaptive Batching
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveLOD:
|
|
||||||
m_Name: Adaptive LOD
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0.4
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveLut:
|
|
||||||
m_Name: Adaptive Lut
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 3
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveMSAA:
|
|
||||||
m_Name: Adaptive MSAA
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 6
|
|
||||||
m_MaxLevel: 2
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowCascade:
|
|
||||||
m_Name: Adaptive Shadow Cascade
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 3
|
|
||||||
m_MaxLevel: 2
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowDistance:
|
|
||||||
m_Name: Adaptive Shadow Distance
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0.15
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowmapResolution:
|
|
||||||
m_Name: Adaptive Shadowmap Resolution
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0.15
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveShadowQuality:
|
|
||||||
m_Name: Adaptive Shadow Quality
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 3
|
|
||||||
m_MaxLevel: 3
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveSorting:
|
|
||||||
m_Name: Adaptive Sorting
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveTransparency:
|
|
||||||
m_Name: Adaptive Transparency
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 1
|
|
||||||
m_MinBound: 0
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveViewDistance:
|
|
||||||
m_Name: Adaptive View Distance
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 2
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 40
|
|
||||||
m_MinBound: 50
|
|
||||||
m_MaxBound: 1000
|
|
||||||
m_AdaptivePhysics:
|
|
||||||
m_Name: Adaptive Physics
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 0
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 5
|
|
||||||
m_MinBound: 0.5
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveDecals:
|
|
||||||
m_Name: Adaptive Decals
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 2
|
|
||||||
m_MaxLevel: 20
|
|
||||||
m_MinBound: 0.01
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_AdaptiveLayerCulling:
|
|
||||||
m_Name: Adaptive Layer Culling
|
|
||||||
m_Enabled: 0
|
|
||||||
m_Scale: 1
|
|
||||||
m_VisualImpact: 1
|
|
||||||
m_Target: 1
|
|
||||||
m_MaxLevel: 40
|
|
||||||
m_MinBound: 0.01
|
|
||||||
m_MaxBound: 1
|
|
||||||
m_Name: Default Scaler Profile
|
|
||||||
m_DefaultScalerProfilerIndex: 0
|
|
||||||
k_AssetVersion: 2
|
|
||||||
@@ -1,267 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!1 &25324321885539938
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 1256957957520000306}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: ProjectileSpawn
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!4 &1256957957520000306
|
|
||||||
Transform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 25324321885539938}
|
|
||||||
serializedVersion: 2
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 2.1, y: -2.86, z: 1.87}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 7228744653633915258}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
--- !u!1 &306349634079512810
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 7055327180212611754}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: ButtonTarget
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!4 &7055327180212611754
|
|
||||||
Transform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 306349634079512810}
|
|
||||||
serializedVersion: 2
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 6009521584277000886}
|
|
||||||
m_Father: {fileID: 7228744653633915258}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
--- !u!1 &578482260246237550
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 6009521584277000886}
|
|
||||||
- component: {fileID: 3827426293549565123}
|
|
||||||
- component: {fileID: 1470073872372251261}
|
|
||||||
- component: {fileID: 3778101033228877197}
|
|
||||||
- component: {fileID: 8782929001941168503}
|
|
||||||
- component: {fileID: 8076614220732688013}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: CenterButtonTarget
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!4 &6009521584277000886
|
|
||||||
Transform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 578482260246237550}
|
|
||||||
serializedVersion: 2
|
|
||||||
m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067}
|
|
||||||
m_LocalPosition: {x: 2.03, y: -0.089999914, z: 1.9}
|
|
||||||
m_LocalScale: {x: 0.5, y: 0.5, z: 0.5}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 7055327180212611754}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
--- !u!33 &3827426293549565123
|
|
||||||
MeshFilter:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 578482260246237550}
|
|
||||||
m_Mesh: {fileID: 5687779609372477813, guid: 8ee80b1e2cfa1c747877549e20403fd3, type: 3}
|
|
||||||
--- !u!23 &1470073872372251261
|
|
||||||
MeshRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 578482260246237550}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_CastShadows: 1
|
|
||||||
m_ReceiveShadows: 1
|
|
||||||
m_DynamicOccludee: 1
|
|
||||||
m_StaticShadowCaster: 0
|
|
||||||
m_MotionVectors: 1
|
|
||||||
m_LightProbeUsage: 1
|
|
||||||
m_ReflectionProbeUsage: 1
|
|
||||||
m_RayTracingMode: 2
|
|
||||||
m_RayTraceProcedural: 0
|
|
||||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
|
||||||
m_RayTracingAccelStructBuildFlags: 1
|
|
||||||
m_SmallMeshCulling: 1
|
|
||||||
m_RenderingLayerMask: 1
|
|
||||||
m_RendererPriority: 0
|
|
||||||
m_Materials:
|
|
||||||
- {fileID: 2100000, guid: d88c7dcf650af2c4e812eaa19f43e2e4, type: 2}
|
|
||||||
m_StaticBatchInfo:
|
|
||||||
firstSubMesh: 0
|
|
||||||
subMeshCount: 0
|
|
||||||
m_StaticBatchRoot: {fileID: 0}
|
|
||||||
m_ProbeAnchor: {fileID: 0}
|
|
||||||
m_LightProbeVolumeOverride: {fileID: 0}
|
|
||||||
m_ScaleInLightmap: 1
|
|
||||||
m_ReceiveGI: 1
|
|
||||||
m_PreserveUVs: 0
|
|
||||||
m_IgnoreNormalsForChartDetection: 0
|
|
||||||
m_ImportantGI: 0
|
|
||||||
m_StitchLightmapSeams: 1
|
|
||||||
m_SelectedEditorRenderState: 3
|
|
||||||
m_MinimumChartSize: 4
|
|
||||||
m_AutoUVMaxDistance: 0.5
|
|
||||||
m_AutoUVMaxAngle: 89
|
|
||||||
m_LightmapParameters: {fileID: 0}
|
|
||||||
m_SortingLayerID: 0
|
|
||||||
m_SortingLayer: 0
|
|
||||||
m_SortingOrder: 0
|
|
||||||
m_AdditionalVertexStreams: {fileID: 0}
|
|
||||||
--- !u!114 &3778101033228877197
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 578482260246237550}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 9d8029baff330b94d836a23c421021a8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
owner: {fileID: 0}
|
|
||||||
--- !u!64 &8782929001941168503
|
|
||||||
MeshCollider:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 578482260246237550}
|
|
||||||
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: 5
|
|
||||||
m_Convex: 1
|
|
||||||
m_CookingOptions: 30
|
|
||||||
m_Mesh: {fileID: 5687779609372477813, guid: 8ee80b1e2cfa1c747877549e20403fd3, type: 3}
|
|
||||||
--- !u!114 &8076614220732688013
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 578482260246237550}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 20fa9c796cd377047ba2c43230717531, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
rotationSpeed: 90
|
|
||||||
--- !u!1 &1062886443160141632
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 6403106612870554802}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: AimPoint
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!4 &6403106612870554802
|
|
||||||
Transform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1062886443160141632}
|
|
||||||
serializedVersion: 2
|
|
||||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
||||||
m_LocalPosition: {x: 2.032, y: -0.23, z: 1.87}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 7228744653633915258}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
--- !u!1 &9110341383532608413
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 7228744653633915258}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: ArenaRoot
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!4 &7228744653633915258
|
|
||||||
Transform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 9110341383532608413}
|
|
||||||
serializedVersion: 2
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 3, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 6403106612870554802}
|
|
||||||
- {fileID: 1256957957520000306}
|
|
||||||
- {fileID: 7055327180212611754}
|
|
||||||
m_Father: {fileID: 0}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
using UnityEngine;
|
|
||||||
|
|
||||||
public class CenterButtonTarget : MonoBehaviour
|
|
||||||
{
|
|
||||||
public TimingWheelShooter owner;
|
|
||||||
|
|
||||||
private void Awake()
|
|
||||||
{
|
|
||||||
if (owner == null)
|
|
||||||
owner = FindFirstObjectByType<TimingWheelShooter>();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void NotifyHit(ProjectileBehaviour projectile)
|
|
||||||
{
|
|
||||||
if (owner != null)
|
|
||||||
owner.NotifyButtonHit(projectile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
8
Assets/ClientSDK.meta
Normal file
8
Assets/ClientSDK.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 799f52449ae21404c9a7593f6dc28c60
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
285
Assets/ClientSDK/Encryption.cs
Normal file
285
Assets/ClientSDK/Encryption.cs
Normal file
@@ -0,0 +1,285 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Security.Cryptography;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace GeoSus.Client
|
||||||
|
{
|
||||||
|
// Klientská strana šifrování - generuje session key, šifruje RSA, AES-CBC session
|
||||||
|
// Používá AES-CBC místo AES-GCM pro kompatibilitu s Unity
|
||||||
|
public class ClientEncryption : IDisposable
|
||||||
|
{
|
||||||
|
private byte[] _sessionKey;
|
||||||
|
private byte[] _sessionIv;
|
||||||
|
private long _nonceCounter;
|
||||||
|
private readonly object _lock = new object();
|
||||||
|
|
||||||
|
// Kontrola, zda je session key nastaven
|
||||||
|
public bool HasSessionKey => _sessionKey != null && _sessionIv != null;
|
||||||
|
|
||||||
|
// Generuje nový session key a IV
|
||||||
|
public void GenerateSessionKey()
|
||||||
|
{
|
||||||
|
_sessionKey = new byte[32]; // AES-256
|
||||||
|
_sessionIv = new byte[16]; // CBC IV (16 bytes)
|
||||||
|
|
||||||
|
using (var rng = RandomNumberGenerator.Create())
|
||||||
|
{
|
||||||
|
rng.GetBytes(_sessionKey);
|
||||||
|
rng.GetBytes(_sessionIv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public byte[] SessionKey => _sessionKey ?? throw new InvalidOperationException("Session key not generated");
|
||||||
|
public byte[] SessionIV => _sessionIv ?? throw new InvalidOperationException("Session IV not generated");
|
||||||
|
|
||||||
|
// Zašifruje session key pomocí RSA public key serveru
|
||||||
|
public (string EncryptedKey, string EncryptedIV) EncryptSessionKeyForServer(string rsaPublicKeyPem)
|
||||||
|
{
|
||||||
|
if (_sessionKey == null || _sessionIv == null)
|
||||||
|
throw new InvalidOperationException("Session key not generated");
|
||||||
|
|
||||||
|
using (var rsa = RSA.Create())
|
||||||
|
{
|
||||||
|
// Parse PEM - extrahuj Base64 obsah
|
||||||
|
var pemLines = rsaPublicKeyPem.Split('\n');
|
||||||
|
var base64 = new StringBuilder();
|
||||||
|
foreach (var line in pemLines)
|
||||||
|
{
|
||||||
|
var trimmed = line.Trim();
|
||||||
|
if (!trimmed.StartsWith("-----") && !string.IsNullOrEmpty(trimmed))
|
||||||
|
{
|
||||||
|
base64.Append(trimmed);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var keyBytes = Convert.FromBase64String(base64.ToString());
|
||||||
|
|
||||||
|
// Unity kompatibilní import - parsujeme SubjectPublicKeyInfo ručně
|
||||||
|
ImportSubjectPublicKeyInfoManual(rsa, keyBytes);
|
||||||
|
|
||||||
|
// Používáme OaepSHA1 pro Unity kompatibilitu (OaepSHA256 není podporován)
|
||||||
|
var encryptedKey = rsa.Encrypt(_sessionKey, RSAEncryptionPadding.OaepSHA1);
|
||||||
|
var encryptedIv = rsa.Encrypt(_sessionIv, RSAEncryptionPadding.OaepSHA1);
|
||||||
|
|
||||||
|
return (Convert.ToBase64String(encryptedKey), Convert.ToBase64String(encryptedIv));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ručně parsuje SubjectPublicKeyInfo (DER) a importuje RSA klíč - Unity kompatibilní
|
||||||
|
private static void ImportSubjectPublicKeyInfoManual(RSA rsa, byte[] subjectPublicKeyInfo)
|
||||||
|
{
|
||||||
|
// SubjectPublicKeyInfo ::= SEQUENCE {
|
||||||
|
// algorithm AlgorithmIdentifier,
|
||||||
|
// subjectPublicKey BIT STRING }
|
||||||
|
// RSAPublicKey ::= SEQUENCE { modulus INTEGER, publicExponent INTEGER }
|
||||||
|
|
||||||
|
int index = 0;
|
||||||
|
|
||||||
|
// Outer SEQUENCE
|
||||||
|
if (subjectPublicKeyInfo[index++] != 0x30)
|
||||||
|
throw new InvalidOperationException("Invalid SubjectPublicKeyInfo");
|
||||||
|
ReadLength(subjectPublicKeyInfo, ref index);
|
||||||
|
|
||||||
|
// AlgorithmIdentifier SEQUENCE - skip it
|
||||||
|
if (subjectPublicKeyInfo[index++] != 0x30)
|
||||||
|
throw new InvalidOperationException("Invalid AlgorithmIdentifier");
|
||||||
|
int algLen = ReadLength(subjectPublicKeyInfo, ref index);
|
||||||
|
index += algLen;
|
||||||
|
|
||||||
|
// BIT STRING containing RSAPublicKey
|
||||||
|
if (subjectPublicKeyInfo[index++] != 0x03)
|
||||||
|
throw new InvalidOperationException("Invalid BIT STRING");
|
||||||
|
ReadLength(subjectPublicKeyInfo, ref index);
|
||||||
|
index++; // Skip unused bits byte (should be 0)
|
||||||
|
|
||||||
|
// RSAPublicKey SEQUENCE
|
||||||
|
if (subjectPublicKeyInfo[index++] != 0x30)
|
||||||
|
throw new InvalidOperationException("Invalid RSAPublicKey");
|
||||||
|
ReadLength(subjectPublicKeyInfo, ref index);
|
||||||
|
|
||||||
|
// Modulus INTEGER
|
||||||
|
byte[] modulus = ReadInteger(subjectPublicKeyInfo, ref index);
|
||||||
|
|
||||||
|
// Exponent INTEGER
|
||||||
|
byte[] exponent = ReadInteger(subjectPublicKeyInfo, ref index);
|
||||||
|
|
||||||
|
var parameters = new RSAParameters
|
||||||
|
{
|
||||||
|
Modulus = modulus,
|
||||||
|
Exponent = exponent
|
||||||
|
};
|
||||||
|
rsa.ImportParameters(parameters);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int ReadLength(byte[] data, ref int index)
|
||||||
|
{
|
||||||
|
int length = data[index++];
|
||||||
|
if ((length & 0x80) != 0)
|
||||||
|
{
|
||||||
|
int numBytes = length & 0x7F;
|
||||||
|
length = 0;
|
||||||
|
for (int i = 0; i < numBytes; i++)
|
||||||
|
{
|
||||||
|
length = (length << 8) | data[index++];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static byte[] ReadInteger(byte[] data, ref int index)
|
||||||
|
{
|
||||||
|
if (data[index++] != 0x02)
|
||||||
|
throw new InvalidOperationException("Expected INTEGER");
|
||||||
|
int length = ReadLength(data, ref index);
|
||||||
|
|
||||||
|
// Skip leading zero if present (used for positive sign in DER)
|
||||||
|
int originalLength = length;
|
||||||
|
int start = index;
|
||||||
|
if (length > 1 && data[start] == 0x00)
|
||||||
|
{
|
||||||
|
start++;
|
||||||
|
length--;
|
||||||
|
}
|
||||||
|
|
||||||
|
byte[] result = new byte[length];
|
||||||
|
Buffer.BlockCopy(data, start, result, 0, length);
|
||||||
|
index += originalLength;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Šifruje zprávu pomocí AES-256-CBC s HMAC
|
||||||
|
public byte[] Encrypt(byte[] plaintext)
|
||||||
|
{
|
||||||
|
if (_sessionKey == null || _sessionIv == null)
|
||||||
|
throw new InvalidOperationException("Session key not set");
|
||||||
|
|
||||||
|
lock (_lock)
|
||||||
|
{
|
||||||
|
// Generuj unikátní IV pro tuto zprávu
|
||||||
|
var iv = GetNextIV();
|
||||||
|
|
||||||
|
using (var aes = Aes.Create())
|
||||||
|
{
|
||||||
|
aes.Key = _sessionKey;
|
||||||
|
aes.IV = iv;
|
||||||
|
aes.Mode = CipherMode.CBC;
|
||||||
|
aes.Padding = PaddingMode.PKCS7;
|
||||||
|
|
||||||
|
byte[] ciphertext;
|
||||||
|
using (var encryptor = aes.CreateEncryptor())
|
||||||
|
using (var ms = new MemoryStream())
|
||||||
|
{
|
||||||
|
using (var cs = new CryptoStream(ms, encryptor, CryptoStreamMode.Write))
|
||||||
|
{
|
||||||
|
cs.Write(plaintext, 0, plaintext.Length);
|
||||||
|
}
|
||||||
|
ciphertext = ms.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compute HMAC pro integritu
|
||||||
|
byte[] hmac;
|
||||||
|
using (var hmacSha = new HMACSHA256(_sessionKey))
|
||||||
|
{
|
||||||
|
var toSign = new byte[iv.Length + ciphertext.Length];
|
||||||
|
Buffer.BlockCopy(iv, 0, toSign, 0, iv.Length);
|
||||||
|
Buffer.BlockCopy(ciphertext, 0, toSign, iv.Length, ciphertext.Length);
|
||||||
|
hmac = hmacSha.ComputeHash(toSign);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Výstup: [16 bytes IV][32 bytes HMAC][ciphertext]
|
||||||
|
var result = new byte[16 + 32 + ciphertext.Length];
|
||||||
|
Buffer.BlockCopy(iv, 0, result, 0, 16);
|
||||||
|
Buffer.BlockCopy(hmac, 0, result, 16, 32);
|
||||||
|
Buffer.BlockCopy(ciphertext, 0, result, 48, ciphertext.Length);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dešifruje zprávu pomocí AES-256-CBC s HMAC ověřením
|
||||||
|
public byte[] Decrypt(byte[] encrypted)
|
||||||
|
{
|
||||||
|
if (_sessionKey == null)
|
||||||
|
throw new InvalidOperationException("Session key not set");
|
||||||
|
|
||||||
|
if (encrypted.Length < 48) return null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var iv = new byte[16];
|
||||||
|
var hmac = new byte[32];
|
||||||
|
var ciphertext = new byte[encrypted.Length - 48];
|
||||||
|
|
||||||
|
Buffer.BlockCopy(encrypted, 0, iv, 0, 16);
|
||||||
|
Buffer.BlockCopy(encrypted, 16, hmac, 0, 32);
|
||||||
|
Buffer.BlockCopy(encrypted, 48, ciphertext, 0, ciphertext.Length);
|
||||||
|
|
||||||
|
// Ověř HMAC
|
||||||
|
byte[] expectedHmac;
|
||||||
|
using (var hmacSha = new HMACSHA256(_sessionKey))
|
||||||
|
{
|
||||||
|
var toVerify = new byte[iv.Length + ciphertext.Length];
|
||||||
|
Buffer.BlockCopy(iv, 0, toVerify, 0, iv.Length);
|
||||||
|
Buffer.BlockCopy(ciphertext, 0, toVerify, iv.Length, ciphertext.Length);
|
||||||
|
expectedHmac = hmacSha.ComputeHash(toVerify);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Constant-time compare
|
||||||
|
var diff = 0;
|
||||||
|
for (int i = 0; i < 32; i++)
|
||||||
|
{
|
||||||
|
diff |= hmac[i] ^ expectedHmac[i];
|
||||||
|
}
|
||||||
|
if (diff != 0) return null; // HMAC mismatch
|
||||||
|
|
||||||
|
using (var aes = Aes.Create())
|
||||||
|
{
|
||||||
|
aes.Key = _sessionKey;
|
||||||
|
aes.IV = iv;
|
||||||
|
aes.Mode = CipherMode.CBC;
|
||||||
|
aes.Padding = PaddingMode.PKCS7;
|
||||||
|
|
||||||
|
using (var decryptor = aes.CreateDecryptor())
|
||||||
|
using (var ms = new MemoryStream(ciphertext))
|
||||||
|
using (var cs = new CryptoStream(ms, decryptor, CryptoStreamMode.Read))
|
||||||
|
using (var output = new MemoryStream())
|
||||||
|
{
|
||||||
|
cs.CopyTo(output);
|
||||||
|
return output.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (CryptographicException)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private byte[] GetNextIV()
|
||||||
|
{
|
||||||
|
if (_sessionIv == null)
|
||||||
|
throw new InvalidOperationException("Session IV not set");
|
||||||
|
|
||||||
|
var iv = new byte[16];
|
||||||
|
Buffer.BlockCopy(_sessionIv, 0, iv, 0, 8);
|
||||||
|
|
||||||
|
var counter = System.Threading.Interlocked.Increment(ref _nonceCounter);
|
||||||
|
var counterBytes = BitConverter.GetBytes(counter);
|
||||||
|
Buffer.BlockCopy(counterBytes, 0, iv, 8, 8);
|
||||||
|
|
||||||
|
return iv;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
if (_sessionKey != null)
|
||||||
|
{
|
||||||
|
Array.Clear(_sessionKey, 0, _sessionKey.Length);
|
||||||
|
_sessionKey = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/ClientSDK/Encryption.cs.meta
Normal file
2
Assets/ClientSDK/Encryption.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bc06bb57786c7e142b06ec231e5cf709
|
||||||
73
Assets/ClientSDK/EventDispatcher.cs
Normal file
73
Assets/ClientSDK/EventDispatcher.cs
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
namespace GeoSus.Client
|
||||||
|
{
|
||||||
|
// Event dispatcher pro Unity main thread
|
||||||
|
// Unity může přidat SynchronizationContext, nebo polling z Update()
|
||||||
|
public class EventDispatcher
|
||||||
|
{
|
||||||
|
private readonly Queue<Action> _pendingActions = new Queue<Action>();
|
||||||
|
private readonly object _lock = new object();
|
||||||
|
private SynchronizationContext? _syncContext;
|
||||||
|
|
||||||
|
public EventDispatcher()
|
||||||
|
{
|
||||||
|
// Pokusíme se zachytit aktuální synchronization context (Unity main thread)
|
||||||
|
_syncContext = SynchronizationContext.Current;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Volat z networking vlákna - naplánuje callback na main thread
|
||||||
|
public void Post(Action action)
|
||||||
|
{
|
||||||
|
if (_syncContext != null)
|
||||||
|
{
|
||||||
|
_syncContext.Post(_ => action(), null);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Fallback - přidáme do fronty pro polling
|
||||||
|
lock (_lock)
|
||||||
|
{
|
||||||
|
_pendingActions.Enqueue(action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Volat z Unity Update() pokud není SynchronizationContext
|
||||||
|
public void ProcessPendingActions()
|
||||||
|
{
|
||||||
|
Action[] actions;
|
||||||
|
lock (_lock)
|
||||||
|
{
|
||||||
|
if (_pendingActions.Count == 0) return;
|
||||||
|
actions = _pendingActions.ToArray();
|
||||||
|
_pendingActions.Clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var action in actions)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
action();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"EventDispatcher error: {ex}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public int PendingCount
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
lock (_lock)
|
||||||
|
{
|
||||||
|
return _pendingActions.Count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/ClientSDK/EventDispatcher.cs.meta
Normal file
2
Assets/ClientSDK/EventDispatcher.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1d2251b279edb0147bd274a884ac878b
|
||||||
607
Assets/ClientSDK/GameClient.cs
Normal file
607
Assets/ClientSDK/GameClient.cs
Normal file
@@ -0,0 +1,607 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net.Sockets;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GeoSus.Client
|
||||||
|
{
|
||||||
|
// Hlavní klientská třída pro připojení k serveru
|
||||||
|
public class GameClient : IDisposable
|
||||||
|
{
|
||||||
|
private TcpClient? _tcpClient;
|
||||||
|
private NetworkStream? _stream;
|
||||||
|
private ClientEncryption? _encryption;
|
||||||
|
private CancellationTokenSource? _cts;
|
||||||
|
private Task? _receiveTask;
|
||||||
|
private int _clientSeq;
|
||||||
|
private readonly object _sendLock = new object();
|
||||||
|
private bool _handshakeComplete;
|
||||||
|
|
||||||
|
public string ClientUuid { get; }
|
||||||
|
public string DisplayName { get; set; }
|
||||||
|
public bool IsConnected => _tcpClient?.Connected ?? false;
|
||||||
|
public bool IsReady => IsConnected && _handshakeComplete && (_encryption?.HasSessionKey ?? false);
|
||||||
|
public EventDispatcher Dispatcher { get; }
|
||||||
|
|
||||||
|
// Events - voláno na main thread přes dispatcher
|
||||||
|
public event Action? OnConnected;
|
||||||
|
public event Action<string>? OnDisconnected;
|
||||||
|
public event Action<string>? OnError;
|
||||||
|
public event Action<Message>? OnMessage;
|
||||||
|
public event Action<GameEvent>? OnGameEvent;
|
||||||
|
|
||||||
|
// Lobby state
|
||||||
|
public string? LobbyId { get; private set; }
|
||||||
|
public string? JoinCode { get; private set; }
|
||||||
|
public LobbyState? CurrentLobbyState { get; private set; }
|
||||||
|
public PlayerRole? MyRole { get; private set; }
|
||||||
|
public List<GameTask> MyTasks { get; } = new List<GameTask>();
|
||||||
|
public Position MyPosition { get; set; }
|
||||||
|
public Dictionary<string, PlayerPositionInfo> PlayerPositions { get; } = new Dictionary<string, PlayerPositionInfo>();
|
||||||
|
public List<Body> Bodies { get; } = new List<Body>();
|
||||||
|
public int Ping { get; private set; }
|
||||||
|
public long LastEventId { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>Returns true if this client is the current lobby owner</summary>
|
||||||
|
public bool IsOwner => CurrentLobbyState?.OwnerId == ClientUuid;
|
||||||
|
|
||||||
|
public GameClient(string clientUuid, string displayName)
|
||||||
|
{
|
||||||
|
ClientUuid = clientUuid;
|
||||||
|
DisplayName = displayName;
|
||||||
|
Dispatcher = new EventDispatcher();
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Connection
|
||||||
|
|
||||||
|
public async Task<bool> ConnectAsync(string host, int port)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_tcpClient = new TcpClient();
|
||||||
|
await _tcpClient.ConnectAsync(host, port);
|
||||||
|
_stream = _tcpClient.GetStream();
|
||||||
|
_encryption = new ClientEncryption();
|
||||||
|
_cts = new CancellationTokenSource();
|
||||||
|
|
||||||
|
// Handshake
|
||||||
|
if (!await PerformHandshakeAsync())
|
||||||
|
{
|
||||||
|
Disconnect("Handshake failed");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Spustíme příjem zpráv
|
||||||
|
_receiveTask = Task.Run(() => ReceiveLoopAsync(_cts.Token));
|
||||||
|
|
||||||
|
Dispatcher.Post(() => OnConnected?.Invoke());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Dispatcher.Post(() => OnError?.Invoke(ex.Message));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<bool> PerformHandshakeAsync()
|
||||||
|
{
|
||||||
|
if (_stream == null || _encryption == null) return false;
|
||||||
|
|
||||||
|
// 1. ClientHello
|
||||||
|
var hello = new ClientHello
|
||||||
|
{
|
||||||
|
ClientUuid = ClientUuid,
|
||||||
|
DisplayName = DisplayName
|
||||||
|
};
|
||||||
|
await SendPlainAsync(hello);
|
||||||
|
|
||||||
|
// 2. ServerHello
|
||||||
|
var serverHelloData = await ReadMessageAsync();
|
||||||
|
if (serverHelloData == null) return false;
|
||||||
|
|
||||||
|
var serverHello = MessageSerializer.Deserialize(serverHelloData) as ServerHello;
|
||||||
|
if (serverHello == null) return false;
|
||||||
|
|
||||||
|
// 3. Generujeme session key a šifrujeme RSA
|
||||||
|
_encryption.GenerateSessionKey();
|
||||||
|
var (encKey, encIv) = _encryption.EncryptSessionKeyForServer(serverHello.RsaPublicKeyPem);
|
||||||
|
|
||||||
|
var keyExchange = new KeyExchange
|
||||||
|
{
|
||||||
|
EncryptedSessionKey = encKey,
|
||||||
|
EncryptedIV = encIv
|
||||||
|
};
|
||||||
|
await SendPlainAsync(keyExchange);
|
||||||
|
|
||||||
|
// 4. KeyExchangeAck (šifrovaně)
|
||||||
|
var ackData = await ReadMessageAsync();
|
||||||
|
if (ackData == null) return false;
|
||||||
|
|
||||||
|
var decrypted = _encryption.Decrypt(ackData);
|
||||||
|
if (decrypted == null) return false;
|
||||||
|
|
||||||
|
var ack = MessageSerializer.Deserialize(decrypted) as KeyExchangeAck;
|
||||||
|
if (ack?.Status == "success")
|
||||||
|
{
|
||||||
|
_handshakeComplete = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Disconnect(string reason = "User disconnected")
|
||||||
|
{
|
||||||
|
_cts?.Cancel();
|
||||||
|
_tcpClient?.Close();
|
||||||
|
_tcpClient = null;
|
||||||
|
_stream = null;
|
||||||
|
_encryption?.Dispose();
|
||||||
|
_encryption = null;
|
||||||
|
|
||||||
|
LobbyId = null;
|
||||||
|
JoinCode = null;
|
||||||
|
CurrentLobbyState = null;
|
||||||
|
MyRole = null;
|
||||||
|
MyTasks.Clear();
|
||||||
|
PlayerPositions.Clear();
|
||||||
|
Bodies.Clear();
|
||||||
|
|
||||||
|
Dispatcher.Post(() => OnDisconnected?.Invoke(reason));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Sending
|
||||||
|
|
||||||
|
public void Send(Message message)
|
||||||
|
{
|
||||||
|
if (_stream == null || _encryption == null || !IsConnected) return;
|
||||||
|
|
||||||
|
message.ClientSeq = Interlocked.Increment(ref _clientSeq);
|
||||||
|
if (string.IsNullOrEmpty(message.ActionId))
|
||||||
|
{
|
||||||
|
message.ActionId = Guid.NewGuid().ToString("N").Substring(0, 8);
|
||||||
|
}
|
||||||
|
|
||||||
|
var plain = MessageSerializer.Serialize(message);
|
||||||
|
var encrypted = _encryption.Encrypt(plain);
|
||||||
|
|
||||||
|
lock (_sendLock)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
SendData(encrypted);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Dispatcher.Post(() => OnError?.Invoke($"Send error: {ex.Message}"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task SendPlainAsync(Message message)
|
||||||
|
{
|
||||||
|
if (_stream == null) return;
|
||||||
|
var data = MessageSerializer.Serialize(message);
|
||||||
|
await SendDataAsync(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SendData(byte[] data)
|
||||||
|
{
|
||||||
|
if (_stream == null) return;
|
||||||
|
|
||||||
|
var lengthBuffer = BitConverter.GetBytes(data.Length);
|
||||||
|
if (BitConverter.IsLittleEndian)
|
||||||
|
Array.Reverse(lengthBuffer);
|
||||||
|
|
||||||
|
_stream.Write(lengthBuffer, 0, 4);
|
||||||
|
_stream.Write(data, 0, data.Length);
|
||||||
|
_stream.Flush();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task SendDataAsync(byte[] data)
|
||||||
|
{
|
||||||
|
if (_stream == null) return;
|
||||||
|
|
||||||
|
var lengthBuffer = BitConverter.GetBytes(data.Length);
|
||||||
|
if (BitConverter.IsLittleEndian)
|
||||||
|
Array.Reverse(lengthBuffer);
|
||||||
|
|
||||||
|
await _stream.WriteAsync(lengthBuffer, 0, 4);
|
||||||
|
await _stream.WriteAsync(data, 0, data.Length);
|
||||||
|
await _stream.FlushAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Receiving
|
||||||
|
|
||||||
|
private async Task ReceiveLoopAsync(CancellationToken ct)
|
||||||
|
{
|
||||||
|
int decryptFailures = 0;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
while (!ct.IsCancellationRequested && IsConnected)
|
||||||
|
{
|
||||||
|
var data = await ReadMessageAsync();
|
||||||
|
if (data == null) break;
|
||||||
|
|
||||||
|
var decrypted = _encryption?.Decrypt(data);
|
||||||
|
if (decrypted == null)
|
||||||
|
{
|
||||||
|
decryptFailures++;
|
||||||
|
if (decryptFailures >= 3)
|
||||||
|
{
|
||||||
|
Disconnect("Too many decryption failures");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
decryptFailures = 0;
|
||||||
|
|
||||||
|
var message = MessageSerializer.Deserialize(decrypted);
|
||||||
|
if (message != null)
|
||||||
|
{
|
||||||
|
ProcessMessage(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex) when (!ct.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
Disconnect($"Connection error: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<byte[]?> ReadMessageAsync()
|
||||||
|
{
|
||||||
|
if (_stream == null) return null;
|
||||||
|
|
||||||
|
var lengthBuffer = new byte[4];
|
||||||
|
var read = await _stream.ReadAsync(lengthBuffer, 0, 4);
|
||||||
|
if (read < 4) return null;
|
||||||
|
|
||||||
|
if (BitConverter.IsLittleEndian)
|
||||||
|
Array.Reverse(lengthBuffer);
|
||||||
|
var length = BitConverter.ToInt32(lengthBuffer, 0);
|
||||||
|
|
||||||
|
if (length <= 0 || length > 1048576) return null;
|
||||||
|
|
||||||
|
var buffer = new byte[length];
|
||||||
|
var totalRead = 0;
|
||||||
|
while (totalRead < length)
|
||||||
|
{
|
||||||
|
read = await _stream.ReadAsync(buffer, totalRead, length - totalRead);
|
||||||
|
if (read == 0) return null;
|
||||||
|
totalRead += read;
|
||||||
|
}
|
||||||
|
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ProcessMessage(Message message)
|
||||||
|
{
|
||||||
|
// Zpracujeme speciální typy
|
||||||
|
switch (message)
|
||||||
|
{
|
||||||
|
case CreateLobbyResponse r:
|
||||||
|
if (r.Success)
|
||||||
|
{
|
||||||
|
LobbyId = r.LobbyId;
|
||||||
|
JoinCode = r.JoinCode;
|
||||||
|
CurrentLobbyState = r.LobbyState;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case JoinLobbyResponse r:
|
||||||
|
if (r.Success)
|
||||||
|
{
|
||||||
|
LobbyId = r.LobbyId;
|
||||||
|
CurrentLobbyState = r.LobbyState;
|
||||||
|
JoinCode = r.LobbyState?.JoinCode;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case PositionBroadcast b:
|
||||||
|
ProcessPositionBroadcast(b);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Pong p:
|
||||||
|
var now = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
|
||||||
|
Ping = (int)(now - p.ClientTime);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GameEvent evt:
|
||||||
|
ProcessGameEvent(evt);
|
||||||
|
Dispatcher.Post(() => OnGameEvent?.Invoke(evt));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
Dispatcher.Post(() => OnMessage?.Invoke(message));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ProcessPositionBroadcast(PositionBroadcast broadcast)
|
||||||
|
{
|
||||||
|
PlayerPositions.Clear();
|
||||||
|
foreach (var player in broadcast.Players)
|
||||||
|
{
|
||||||
|
PlayerPositions[player.ClientUuid] = player;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ProcessGameEvent(GameEvent evt)
|
||||||
|
{
|
||||||
|
LastEventId = evt.EventId;
|
||||||
|
|
||||||
|
switch (evt.EventType)
|
||||||
|
{
|
||||||
|
case "PlayerJoined":
|
||||||
|
// Add player to lobby state
|
||||||
|
var joinedPayload = evt.GetPayload<PlayerJoinedPayload>();
|
||||||
|
if (joinedPayload != null && CurrentLobbyState?.Players != null)
|
||||||
|
{
|
||||||
|
// Check if player already exists
|
||||||
|
bool exists = CurrentLobbyState.Players.Any(p => p.ClientUuid == joinedPayload.ClientUuid);
|
||||||
|
if (!exists)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Players.Add(new PlayerInfo
|
||||||
|
{
|
||||||
|
ClientUuid = joinedPayload.ClientUuid,
|
||||||
|
DisplayName = joinedPayload.DisplayName,
|
||||||
|
IsOwner = false,
|
||||||
|
IsReady = false,
|
||||||
|
State = PlayerState.Alive
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "PlayerLeft":
|
||||||
|
// Remove player from lobby state
|
||||||
|
var leftPayload = evt.GetPayload<PlayerLeftPayload>();
|
||||||
|
if (leftPayload != null && CurrentLobbyState?.Players != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Players.RemoveAll(p => p.ClientUuid == leftPayload.ClientUuid);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "HostChanged":
|
||||||
|
// Update lobby owner
|
||||||
|
var hostPayload = evt.GetPayload<HostChangedPayload>();
|
||||||
|
if (hostPayload != null && CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.OwnerId = hostPayload.NewHostId;
|
||||||
|
// Update IsOwner flag on all players
|
||||||
|
foreach (var player in CurrentLobbyState.Players)
|
||||||
|
{
|
||||||
|
player.IsOwner = player.ClientUuid == hostPayload.NewHostId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "GameStarting":
|
||||||
|
// Game is entering loading phase - update lobby state if available
|
||||||
|
if (CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Phase = GamePhase.Loading;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "MapDataReady":
|
||||||
|
// Map data received - store it and send confirmation
|
||||||
|
var mapDataPayload = evt.GetPayload<MapDataReadyPayload>();
|
||||||
|
if (mapDataPayload != null && CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.MapData = mapDataPayload.MapData;
|
||||||
|
CurrentLobbyState.MapDataReady = true;
|
||||||
|
}
|
||||||
|
// Send confirmation to server
|
||||||
|
Send(new MapDataReceived());
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "GameStarted":
|
||||||
|
// Game officially started - update phase
|
||||||
|
if (CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Phase = GamePhase.Playing;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "RoleAssigned":
|
||||||
|
var rolePayload = evt.GetPayload<RoleAssignedPayload>();
|
||||||
|
if (rolePayload != null && rolePayload.ClientUuid == ClientUuid)
|
||||||
|
{
|
||||||
|
MyRole = rolePayload.Role;
|
||||||
|
MyTasks.Clear();
|
||||||
|
if (rolePayload.Tasks != null)
|
||||||
|
{
|
||||||
|
MyTasks.AddRange(rolePayload.Tasks);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "PlayerKilled":
|
||||||
|
var killPayload = evt.GetPayload<PlayerKilledPayload>();
|
||||||
|
if (killPayload != null)
|
||||||
|
{
|
||||||
|
Bodies.Add(new Body
|
||||||
|
{
|
||||||
|
BodyId = killPayload.BodyId,
|
||||||
|
VictimId = killPayload.VictimId,
|
||||||
|
Location = killPayload.Location
|
||||||
|
});
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "MeetingStarted":
|
||||||
|
if (CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Phase = GamePhase.Meeting;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "VotingClosed":
|
||||||
|
Bodies.Clear(); // Bodies zmizí po meetingu
|
||||||
|
if (CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Phase = GamePhase.Playing;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "GameEnded":
|
||||||
|
if (CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
CurrentLobbyState.Phase = GamePhase.Ended;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Game Actions
|
||||||
|
|
||||||
|
public void CreateLobby(Position? center = null, int impostorCount = 1, int taskCount = 5, string? password = null, double playAreaRadius = 500)
|
||||||
|
{
|
||||||
|
Send(new CreateLobby
|
||||||
|
{
|
||||||
|
PlayAreaCenter = center,
|
||||||
|
PlayAreaRadius = playAreaRadius,
|
||||||
|
ImpostorCount = impostorCount,
|
||||||
|
TaskCount = taskCount,
|
||||||
|
Password = password
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void JoinLobby(string joinCode, string? password = null)
|
||||||
|
{
|
||||||
|
Send(new JoinLobby
|
||||||
|
{
|
||||||
|
JoinCode = joinCode.ToUpperInvariant(),
|
||||||
|
Password = password
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void LeaveLobby()
|
||||||
|
{
|
||||||
|
Send(new LeaveLobby());
|
||||||
|
LobbyId = null;
|
||||||
|
JoinCode = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void StartGame()
|
||||||
|
{
|
||||||
|
Send(new StartGame());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ReturnToLobby()
|
||||||
|
{
|
||||||
|
Send(new ReturnToLobby());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdatePosition(Position position)
|
||||||
|
{
|
||||||
|
MyPosition = position;
|
||||||
|
Send(new UpdatePosition { Position = position });
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Kill(string targetUuid)
|
||||||
|
{
|
||||||
|
Send(new KillAttempt { TargetClientUuid = targetUuid });
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ReportBody(string bodyId)
|
||||||
|
{
|
||||||
|
Send(new ReportBody { BodyId = bodyId });
|
||||||
|
}
|
||||||
|
|
||||||
|
public void CallEmergencyMeeting()
|
||||||
|
{
|
||||||
|
Send(new CallEmergencyMeeting());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Vote(string? targetUuid)
|
||||||
|
{
|
||||||
|
Send(new CastVote { TargetClientUuid = targetUuid });
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Pokus o dokončení tasku. Server ověří že hráč je na správné pozici.
|
||||||
|
/// </summary>
|
||||||
|
public void CompleteTask(string taskId)
|
||||||
|
{
|
||||||
|
Send(new TaskComplete { TaskId = taskId });
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SendPing()
|
||||||
|
{
|
||||||
|
Send(new Ping { ClientTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds() });
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Reconnect(string lobbyId)
|
||||||
|
{
|
||||||
|
Send(new Reconnect { LobbyId = lobbyId, LastEventId = LastEventId });
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Helpers
|
||||||
|
|
||||||
|
public Body? FindNearbyBody(double maxDistance)
|
||||||
|
{
|
||||||
|
foreach (var body in Bodies)
|
||||||
|
{
|
||||||
|
if (MyPosition.DistanceTo(body.Location) <= maxDistance)
|
||||||
|
{
|
||||||
|
return body;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string? FindNearbyPlayer(double maxDistance, bool aliveOnly = true)
|
||||||
|
{
|
||||||
|
foreach (var (uuid, info) in PlayerPositions)
|
||||||
|
{
|
||||||
|
if (uuid == ClientUuid) continue;
|
||||||
|
if (aliveOnly && info.State != PlayerState.Alive) continue;
|
||||||
|
|
||||||
|
if (MyPosition.DistanceTo(info.Position) <= maxDistance)
|
||||||
|
{
|
||||||
|
return uuid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public GameTask? FindNearbyTask(double maxDistance)
|
||||||
|
{
|
||||||
|
foreach (var task in MyTasks)
|
||||||
|
{
|
||||||
|
if (MyPosition.DistanceTo(task.Location) <= maxDistance)
|
||||||
|
{
|
||||||
|
return task;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Volat z Unity Update() pro zpracování callbacků
|
||||||
|
public void Update()
|
||||||
|
{
|
||||||
|
Dispatcher.ProcessPendingActions();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
Disconnect("Disposed");
|
||||||
|
_encryption?.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/ClientSDK/GameClient.cs.meta
Normal file
2
Assets/ClientSDK/GameClient.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 91e0f647c37b0b94b83f53bb854db28c
|
||||||
1054
Assets/ClientSDK/Protocol.cs
Normal file
1054
Assets/ClientSDK/Protocol.cs
Normal file
File diff suppressed because it is too large
Load Diff
2
Assets/ClientSDK/Protocol.cs.meta
Normal file
2
Assets/ClientSDK/Protocol.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 14463228dfea2264ebfc36c3a7dc4b99
|
||||||
1992
Assets/ClientSDK/SimulatorClient.cs
Normal file
1992
Assets/ClientSDK/SimulatorClient.cs
Normal file
File diff suppressed because it is too large
Load Diff
2
Assets/ClientSDK/SimulatorClient.cs.meta
Normal file
2
Assets/ClientSDK/SimulatorClient.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 80ef0979df5d1fe489225f3e5edadc5c
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
%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: 11500000, guid: 0863bf92b4fcc45b0b9267325249bf0f, type: 3}
|
|
||||||
m_Name: NotificationSettings
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
toolbarInt: 0
|
|
||||||
iOSNotificationEditorSettingsValues:
|
|
||||||
keys:
|
|
||||||
- UnityNotificationRequestAuthorizationOnAppLaunch
|
|
||||||
- UnityNotificationDefaultAuthorizationOptions
|
|
||||||
- UnityAddRemoteNotificationCapability
|
|
||||||
- UnityNotificationRequestAuthorizationForRemoteNotificationsOnAppLaunch
|
|
||||||
- UnityRemoteNotificationForegroundPresentationOptions
|
|
||||||
- UnityUseAPSReleaseEnvironment
|
|
||||||
- UnityUseLocationNotificationTrigger
|
|
||||||
values:
|
|
||||||
- True
|
|
||||||
- 7
|
|
||||||
- False
|
|
||||||
- False
|
|
||||||
- -1
|
|
||||||
- False
|
|
||||||
- False
|
|
||||||
AndroidNotificationEditorSettingsValues:
|
|
||||||
keys:
|
|
||||||
- UnityNotificationAndroidRescheduleOnDeviceRestart
|
|
||||||
- UnityNotificationAndroidUseCustomActivity
|
|
||||||
- UnityNotificationAndroidCustomActivityString
|
|
||||||
values:
|
|
||||||
- False
|
|
||||||
- False
|
|
||||||
- com.unity3d.player.UnityPlayerActivity
|
|
||||||
TrackedResourceAssets: []
|
|
||||||
8
Assets/GameManager.meta
Normal file
8
Assets/GameManager.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5fd2bf33031fe9d4ea3439b41d7f4b97
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
91
Assets/GameManager/GameManager.cs
Normal file
91
Assets/GameManager/GameManager.cs
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
using GeoSus.Client;
|
||||||
|
using Subsystems;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using TMPro;
|
||||||
|
/*
|
||||||
|
GameManager - hlavní tøida pro správu hry
|
||||||
|
GameManager_Network - subsystém pro správu komunikace se serverem
|
||||||
|
GameManager_Game - subsystém pro správu logiky hry (sabotáže, tasky, atd.)
|
||||||
|
GameManager_Map - subsystém pro správu mapy a prostøedí
|
||||||
|
GameManager_Input - subsystém pro správu vstupu od hráèe
|
||||||
|
GameManager_UI - subsystém pro správu uživatelského rozhraní
|
||||||
|
GamaManager_Stats - subsystém pro správu statistik pro server
|
||||||
|
*/
|
||||||
|
public class GameManager : MonoBehaviour
|
||||||
|
{
|
||||||
|
[Header("Subsystems")]
|
||||||
|
protected GameManager_Network networkSubsystem;
|
||||||
|
protected GameManager_UI uiSubsystem;
|
||||||
|
|
||||||
|
|
||||||
|
protected GameClient gameClient;
|
||||||
|
[Header("Player Info")]
|
||||||
|
public string displayName;
|
||||||
|
|
||||||
|
[Header("UI Elements")]
|
||||||
|
public Canvas JoinCreateLobby;
|
||||||
|
public Canvas InLobby;
|
||||||
|
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
DontDestroyOnLoad(this);
|
||||||
|
if (displayName == null || displayName == "")
|
||||||
|
{
|
||||||
|
displayName = "Player_" + Random.Range(1000, 9999).ToString();
|
||||||
|
}
|
||||||
|
gameClient = new GameClient(GenerateUUID(), /*displayName*/ GenerateUsername());
|
||||||
|
uiSubsystem = new GameManager_UI(gameClient, JoinCreateLobby, InLobby);
|
||||||
|
networkSubsystem = new GameManager_Network(gameClient);
|
||||||
|
networkSubsystem.OpenConection();
|
||||||
|
}
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
|
if (gameClient.CurrentLobbyState != null)
|
||||||
|
{
|
||||||
|
uiSubsystem.UpdateLobbyUI();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected string GenerateUUID()
|
||||||
|
{
|
||||||
|
string UUID = System.Guid.NewGuid().ToString();
|
||||||
|
Debug.Log(UUID);
|
||||||
|
return UUID;
|
||||||
|
}
|
||||||
|
protected string GenerateUsername()
|
||||||
|
{
|
||||||
|
string Username = Random.Range(0,10).ToString() + Random.Range(0, 10).ToString() + Random.Range(0, 10).ToString() + Random.Range(0, 10).ToString();
|
||||||
|
Debug.Log(Username);
|
||||||
|
return Username;
|
||||||
|
}
|
||||||
|
public void CreateLobbyButton()
|
||||||
|
{
|
||||||
|
networkSubsystem.CrateLobby(50.0755, 14.4378);
|
||||||
|
}
|
||||||
|
public void JoinLobbyButton()
|
||||||
|
{
|
||||||
|
TMP_InputField joinCode = JoinCreateLobby.transform.Find("InputCode").GetComponent<TMP_InputField>();
|
||||||
|
if (joinCode.text != null && joinCode.text != "")
|
||||||
|
{
|
||||||
|
networkSubsystem.JoinLobby(joinCode.text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Debug.Log("Join code is empty!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public void LeaveLobbyButton()
|
||||||
|
{
|
||||||
|
networkSubsystem.LeaveLobby();
|
||||||
|
}
|
||||||
|
void OnApplicationQuit()
|
||||||
|
{
|
||||||
|
gameClient.Disconnect();
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/GameManager/GameManager.cs.meta
Normal file
2
Assets/GameManager/GameManager.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 22bf82e679cf6e1419440d236360ba3b
|
||||||
152
Assets/GameManager/GameManager_Network.cs
Normal file
152
Assets/GameManager/GameManager_Network.cs
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
using GeoSus.Client;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace Subsystems
|
||||||
|
{
|
||||||
|
public class GameManager_Network
|
||||||
|
{
|
||||||
|
private const string _serverAddress = "geosus.honzuvkod.dev";
|
||||||
|
private const int _serverPort = 7777;
|
||||||
|
private GameClient _gameClient;
|
||||||
|
public async void OpenConection()
|
||||||
|
{
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
Task<bool> state = _gameClient.ConnectAsync(_serverAddress, _serverPort);
|
||||||
|
await state;
|
||||||
|
if (state.Result)
|
||||||
|
{
|
||||||
|
Debug.Log("Connected to server.");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Debug.Log("Failed to connect to server");
|
||||||
|
}
|
||||||
|
await Task.Delay(5000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public GameManager_Network(GameClient gameClient)
|
||||||
|
{
|
||||||
|
_gameClient = gameClient;
|
||||||
|
RegisterEventHandlers();
|
||||||
|
}
|
||||||
|
public void RegisterEventHandlers()
|
||||||
|
{
|
||||||
|
_gameClient.OnConnected += OnConnected;
|
||||||
|
_gameClient.OnDisconnected += OnDisconnected;
|
||||||
|
_gameClient.OnError += OnError;
|
||||||
|
_gameClient.OnMessage += OnMessage;
|
||||||
|
_gameClient.OnGameEvent += OnGameEvent;
|
||||||
|
}
|
||||||
|
private void OnConnected()
|
||||||
|
{
|
||||||
|
Debug.Log("Successfully connected to the server.");
|
||||||
|
}
|
||||||
|
private void OnDisconnected(string reason)
|
||||||
|
{
|
||||||
|
Debug.Log($"Host disconnected due to {reason}");
|
||||||
|
}
|
||||||
|
private void OnError(string error)
|
||||||
|
{
|
||||||
|
Debug.LogError($"Network error: {error}");
|
||||||
|
}
|
||||||
|
private void OnMessage(Message message)
|
||||||
|
{
|
||||||
|
switch (message.Type)
|
||||||
|
{
|
||||||
|
case "GameEvent":
|
||||||
|
OnGameEvent(message as GameEvent);
|
||||||
|
break;
|
||||||
|
case "CreateLobbyResponse":
|
||||||
|
Debug.Log("Received CreateLobbyResponse message");
|
||||||
|
HandleCreateLobbyResponse(message as CreateLobbyResponse);
|
||||||
|
break;
|
||||||
|
case "JoinLobbyResponse":
|
||||||
|
Debug.Log("Received JoinLobbyResponse message");
|
||||||
|
HandleJoinLobbyResponse(message as JoinLobbyResponse);
|
||||||
|
break;
|
||||||
|
case "Ack":
|
||||||
|
Debug.Log("Received Ack message");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
Debug.Log("Received message of type: " + message.Type);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void OnGameEvent(GameEvent gameEvent)
|
||||||
|
{
|
||||||
|
switch (gameEvent.Type)
|
||||||
|
{
|
||||||
|
case "PlayerJoined":
|
||||||
|
Debug.Log($"Player {gameEvent.GetPayload<PlayerJoinedPayload>().DisplayName} joined");
|
||||||
|
HandlePlayerJoined(gameEvent);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
Debug.Log("Received GameEvent of type: " + gameEvent.Type);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void HandleCreateLobbyResponse(CreateLobbyResponse message)
|
||||||
|
{
|
||||||
|
if (message.Success)
|
||||||
|
{
|
||||||
|
Debug.Log("Lobby created successfully. Join Code: " + message.JoinCode + ", Lobby ID: " + message.LobbyId);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Debug.LogError("Failed to create lobby: " + message.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void HandleJoinLobbyResponse(JoinLobbyResponse message)
|
||||||
|
{
|
||||||
|
if (message.Success)
|
||||||
|
{
|
||||||
|
Debug.Log("Lobby created successfully." + ", Lobby ID: " + message.LobbyId);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Debug.LogError("Failed to create lobby: " + message.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void HandlePlayerJoined(GameEvent gameEvent)
|
||||||
|
{
|
||||||
|
var payload = gameEvent.GetPayload<PlayerJoinedPayload>();
|
||||||
|
_gameClient.CurrentLobbyState.Players.Add(new PlayerInfo
|
||||||
|
{
|
||||||
|
ClientUuid = payload.ClientUuid,
|
||||||
|
DisplayName = payload.DisplayName,
|
||||||
|
IsOwner = false,
|
||||||
|
IsReady = false,
|
||||||
|
State = PlayerState.Alive
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void CrateLobby(double lat, double lon)
|
||||||
|
{
|
||||||
|
_gameClient.CreateLobby(new Position(lat, lon));
|
||||||
|
}
|
||||||
|
public void JoinLobby(string joinCode)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_gameClient.JoinLobby(joinCode);
|
||||||
|
}
|
||||||
|
catch (System.Exception ex)
|
||||||
|
{
|
||||||
|
Debug.LogError("Error joining lobby: " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public void LeaveLobby()
|
||||||
|
{
|
||||||
|
_gameClient.Disconnect();
|
||||||
|
Application.Quit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
2
Assets/GameManager/GameManager_Network.cs.meta
Normal file
2
Assets/GameManager/GameManager_Network.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 989e9292fe24c2a4ba95ceae191dd330
|
||||||
35
Assets/GameManager/GameManager_UI.cs
Normal file
35
Assets/GameManager/GameManager_UI.cs
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
using Subsystems;
|
||||||
|
using GeoSus.Client;
|
||||||
|
using System.ComponentModel;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Subsystems
|
||||||
|
{
|
||||||
|
public class GameManager_UI
|
||||||
|
{
|
||||||
|
private GameClient _gameClient;
|
||||||
|
private Canvas _CreateJoinLobby;
|
||||||
|
private Canvas _InLobby;
|
||||||
|
public GameManager_UI(GameClient gameClient, Canvas CreateJoinLobby, Canvas InLobby)
|
||||||
|
{
|
||||||
|
_gameClient = gameClient;
|
||||||
|
_CreateJoinLobby = CreateJoinLobby;
|
||||||
|
_InLobby = InLobby;
|
||||||
|
_CreateJoinLobby.enabled = true;
|
||||||
|
_InLobby.enabled = false;
|
||||||
|
}
|
||||||
|
public void UpdateLobbyUI()
|
||||||
|
{
|
||||||
|
_InLobby.enabled = true;
|
||||||
|
_CreateJoinLobby.enabled = false;
|
||||||
|
var playerList = _InLobby.transform.Find("PlayerList").GetComponent<TMPro.TMP_Text>();
|
||||||
|
playerList.text = "";
|
||||||
|
foreach (var player in _gameClient.CurrentLobbyState.Players)
|
||||||
|
{
|
||||||
|
playerList.text += player.DisplayName + "\n";
|
||||||
|
}
|
||||||
|
_InLobby.transform.Find("JoinCode").GetComponent<TMPro.TMP_Text>().text = _gameClient.CurrentLobbyState.JoinCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/GameManager/GameManager_UI.cs.meta
Normal file
2
Assets/GameManager/GameManager_UI.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: cbe0afd6cfb57b44781533cfa4ce4196
|
||||||
@@ -1,21 +1,53 @@
|
|||||||
//using GeoSus.Client;
|
using GeoSus.Client;
|
||||||
using System;
|
using System;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
public enum TaskType
|
public enum TaskType
|
||||||
{
|
{
|
||||||
Task
|
Task //TODO: Typy úkolù
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public interface ITask
|
public interface ITask
|
||||||
{
|
{
|
||||||
public string TaskID { get; set; } // Unikátní ID úkolu pro server
|
public string TaskID { get; } // Unikátní ID úkolu pro server
|
||||||
public TaskType TaskType { get; set; } // Typ úkolu
|
public TaskType TaskType { get; } // Typ úkolu
|
||||||
public string TaskName { get; set; } // Viditelný název úkolu
|
public string TaskName { get; } // Viditelný název úkolu
|
||||||
public (double, double) TaskLocation { get; set; } // Poloha na mapě
|
public (double, double) TaskLocation { get; } // Polohy na mapì
|
||||||
public bool IsCompleted { get; } // Stav dokončení úkolu
|
public bool IsCompleted { get; } // Stav dokonèení úkolu
|
||||||
|
|
||||||
|
void Initialize(Action<ITask> onCompleted); // Vytvoøení tasku + naètení postupu
|
||||||
|
void ExitTask(Action<ITask> onExit); // Pøi opuštìní úkolu poslat hotovo / uložit postup / reset
|
||||||
|
void Complete(); // Oznaèit úkol jako dokonèený, poslat na server a zavøít
|
||||||
|
|
||||||
void Initialize(Action<ITask> onCompleted); // Vytvoření tasku
|
|
||||||
void ExitTask(Action<ITask> onExit); // Při opuštění úkolu
|
|
||||||
void Complete(); // Označit úkol jako dokončený
|
|
||||||
}
|
}
|
||||||
|
/* Ukázoková implementace ITask
|
||||||
|
public class Wires : ITask{
|
||||||
|
public string TaskID { get; set; } // Unikátní ID úkolu pro server
|
||||||
|
public TaskType TaskType { get; set; } // Typ úkolu
|
||||||
|
public string TaskName { get; set; } // Viditelný název úkolu
|
||||||
|
public (double, double) TaskLocation { get; set; } // Poloha na mapì
|
||||||
|
public bool IsCompleted { get; private set; } // Stav dokonèení úkolu
|
||||||
|
private Action<ITask> _onCompleted;
|
||||||
|
|
||||||
|
public void Initialize(Action<ITask> onCompleted) // Vytvoøení tasku
|
||||||
|
{
|
||||||
|
IsCompleted = false;
|
||||||
|
_onCompleted = onCompleted;
|
||||||
|
}
|
||||||
|
public void ExitTask(Action<ITask> onExit) //Zavøení tasku
|
||||||
|
{
|
||||||
|
onExit?.Invoke(this);
|
||||||
|
}
|
||||||
|
public void Complete() // Dokonèení tasku a zavøení
|
||||||
|
{
|
||||||
|
IsCompleted = true;
|
||||||
|
_onCompleted?.Invoke(this);
|
||||||
|
ExitTask(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
*/
|
||||||
2
Assets/GameManager/ITask.cs.meta
Normal file
2
Assets/GameManager/ITask.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: feb806f8c9bbde347862d714c4e96c61
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
using UnityEngine;
|
|
||||||
|
|
||||||
public class GlassPiece : MonoBehaviour
|
|
||||||
{
|
|
||||||
public int PieceIndex { get; private set; }
|
|
||||||
public bool IsBroken { get; private set; }
|
|
||||||
|
|
||||||
[SerializeField] private float maxHealth = 1000f;
|
|
||||||
|
|
||||||
[Header("Damage Visuals")]
|
|
||||||
[SerializeField] private float damagedAlpha = 0.85f;
|
|
||||||
|
|
||||||
private float currentHealth;
|
|
||||||
private Rigidbody rb;
|
|
||||||
private Renderer rend;
|
|
||||||
private Vector3 originalScale;
|
|
||||||
|
|
||||||
private Color intactColor = Color.white;
|
|
||||||
|
|
||||||
private void Awake()
|
|
||||||
{
|
|
||||||
rb = GetComponent<Rigidbody>();
|
|
||||||
rend = GetComponent<Renderer>();
|
|
||||||
|
|
||||||
if (rend == null)
|
|
||||||
rend = GetComponentInChildren<Renderer>();
|
|
||||||
|
|
||||||
originalScale = transform.localScale;
|
|
||||||
|
|
||||||
if (rend != null)
|
|
||||||
{
|
|
||||||
if (rend.material.HasProperty("_BaseColor"))
|
|
||||||
intactColor = rend.material.GetColor("_BaseColor");
|
|
||||||
else if (rend.material.HasProperty("_Color"))
|
|
||||||
intactColor = rend.material.color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Initialize(int index, float startHealth)
|
|
||||||
{
|
|
||||||
PieceIndex = index;
|
|
||||||
maxHealth = startHealth;
|
|
||||||
currentHealth = startHealth;
|
|
||||||
IsBroken = false;
|
|
||||||
|
|
||||||
if (rb != null)
|
|
||||||
{
|
|
||||||
rb.isKinematic = true;
|
|
||||||
rb.useGravity = false;
|
|
||||||
rb.linearVelocity = Vector3.zero;
|
|
||||||
rb.angularVelocity = Vector3.zero;
|
|
||||||
}
|
|
||||||
|
|
||||||
transform.localScale = originalScale;
|
|
||||||
UpdateVisual();
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool ApplyDamage(float damage, Vector3 hitPoint, Vector3 impulseDirection, float impulseStrength)
|
|
||||||
{
|
|
||||||
if (IsBroken) return false;
|
|
||||||
|
|
||||||
currentHealth = Mathf.Max(0f, currentHealth - damage);
|
|
||||||
UpdateVisual();
|
|
||||||
|
|
||||||
if (currentHealth <= 0f)
|
|
||||||
{
|
|
||||||
Break(hitPoint, impulseDirection, impulseStrength);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateVisual()
|
|
||||||
{
|
|
||||||
if (rend == null) return;
|
|
||||||
|
|
||||||
float damage01 = 1f - (currentHealth / maxHealth);
|
|
||||||
float visualT = Mathf.Pow(damage01, 0.8f);
|
|
||||||
|
|
||||||
Color targetColor = new Color(1f, 1f, 1f, damagedAlpha);
|
|
||||||
Color finalColor = Color.Lerp(intactColor, targetColor, visualT);
|
|
||||||
|
|
||||||
if (rend.material.HasProperty("_BaseColor"))
|
|
||||||
rend.material.SetColor("_BaseColor", finalColor);
|
|
||||||
else if (rend.material.HasProperty("_Color"))
|
|
||||||
rend.material.color = finalColor;
|
|
||||||
|
|
||||||
float shrink = Mathf.Lerp(1f, 0.92f, visualT * 0.25f);
|
|
||||||
transform.localScale = originalScale * shrink;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Break(Vector3 hitPoint, Vector3 impulseDirection, float impulseStrength)
|
|
||||||
{
|
|
||||||
if (IsBroken) return;
|
|
||||||
|
|
||||||
IsBroken = true;
|
|
||||||
|
|
||||||
transform.SetParent(null, true);
|
|
||||||
|
|
||||||
if (rb != null)
|
|
||||||
{
|
|
||||||
rb.isKinematic = false;
|
|
||||||
rb.useGravity = true;
|
|
||||||
rb.collisionDetectionMode = CollisionDetectionMode.ContinuousDynamic;
|
|
||||||
|
|
||||||
if (impulseDirection.sqrMagnitude < 0.0001f)
|
|
||||||
impulseDirection = transform.forward;
|
|
||||||
|
|
||||||
rb.AddForceAtPosition(impulseDirection.normalized * impulseStrength, hitPoint, ForceMode.Impulse);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,194 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
public class GlassRingController : MonoBehaviour
|
|
||||||
{
|
|
||||||
[Header("Auto Setup")]
|
|
||||||
public bool autoCollectOnAwake = true;
|
|
||||||
public bool includeInactive = true;
|
|
||||||
public float pieceMaxHealth = 100f;
|
|
||||||
|
|
||||||
[Header("Rotation")]
|
|
||||||
public float rotationSpeedDegrees = 45f;
|
|
||||||
|
|
||||||
[Header("Audio")]
|
|
||||||
public AudioSource audioSource;
|
|
||||||
public AudioClip damageClip;
|
|
||||||
public AudioClip breakClip;
|
|
||||||
[Range(0f, 1f)] public float damageVolume = 0.7f;
|
|
||||||
[Range(0f, 1f)] public float breakVolume = 1f;
|
|
||||||
|
|
||||||
private GlassPiece[] pieces;
|
|
||||||
public GlassPiece[] Pieces => pieces;
|
|
||||||
|
|
||||||
private void Awake()
|
|
||||||
{
|
|
||||||
if (audioSource == null)
|
|
||||||
audioSource = GetComponent<AudioSource>();
|
|
||||||
|
|
||||||
if (audioSource == null)
|
|
||||||
audioSource = gameObject.AddComponent<AudioSource>();
|
|
||||||
|
|
||||||
if (Application.isPlaying && autoCollectOnAwake)
|
|
||||||
{
|
|
||||||
CollectPiecesFromChildren();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Update()
|
|
||||||
{
|
|
||||||
if (!Application.isPlaying || Mathf.Abs(rotationSpeedDegrees) < 0.001f)
|
|
||||||
return;
|
|
||||||
|
|
||||||
transform.Rotate(Vector3.right, rotationSpeedDegrees * Time.deltaTime, Space.World);
|
|
||||||
}
|
|
||||||
|
|
||||||
[ContextMenu("Collect Pieces From Children")]
|
|
||||||
public void CollectPiecesFromChildren()
|
|
||||||
{
|
|
||||||
List<GlassPiece> foundPieces = new List<GlassPiece>();
|
|
||||||
|
|
||||||
Transform[] allChildren = GetComponentsInChildren<Transform>(includeInactive);
|
|
||||||
|
|
||||||
foreach (Transform t in allChildren)
|
|
||||||
{
|
|
||||||
if (t == transform) continue;
|
|
||||||
|
|
||||||
Renderer rend = t.GetComponent<Renderer>();
|
|
||||||
if (rend == null)
|
|
||||||
rend = t.GetComponentInChildren<Renderer>();
|
|
||||||
|
|
||||||
if (rend == null)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
Collider col = t.GetComponent<Collider>();
|
|
||||||
|
|
||||||
bool invalidMeshCollider = false;
|
|
||||||
MeshCollider existingMeshCollider = col as MeshCollider;
|
|
||||||
if (existingMeshCollider != null && existingMeshCollider.sharedMesh == null)
|
|
||||||
{
|
|
||||||
invalidMeshCollider = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (col == null || invalidMeshCollider)
|
|
||||||
{
|
|
||||||
if (invalidMeshCollider)
|
|
||||||
Destroy(existingMeshCollider);
|
|
||||||
|
|
||||||
BoxCollider box = t.GetComponent<BoxCollider>();
|
|
||||||
if (box == null)
|
|
||||||
box = t.gameObject.AddComponent<BoxCollider>();
|
|
||||||
|
|
||||||
Bounds worldBounds = rend.bounds;
|
|
||||||
Vector3 localCenter = t.InverseTransformPoint(worldBounds.center);
|
|
||||||
|
|
||||||
box.center = localCenter;
|
|
||||||
|
|
||||||
Vector3 lossy = t.lossyScale;
|
|
||||||
box.size = new Vector3(
|
|
||||||
worldBounds.size.x / Mathf.Max(lossy.x, 0.0001f),
|
|
||||||
worldBounds.size.y / Mathf.Max(lossy.y, 0.0001f),
|
|
||||||
worldBounds.size.z / Mathf.Max(lossy.z, 0.0001f)
|
|
||||||
);
|
|
||||||
|
|
||||||
col = box;
|
|
||||||
}
|
|
||||||
|
|
||||||
GlassPiece piece = t.GetComponent<GlassPiece>();
|
|
||||||
if (piece == null)
|
|
||||||
piece = t.gameObject.AddComponent<GlassPiece>();
|
|
||||||
|
|
||||||
Rigidbody rb = t.GetComponent<Rigidbody>();
|
|
||||||
if (rb == null)
|
|
||||||
rb = t.gameObject.AddComponent<Rigidbody>();
|
|
||||||
|
|
||||||
rb.isKinematic = true;
|
|
||||||
rb.useGravity = false;
|
|
||||||
|
|
||||||
foundPieces.Add(piece);
|
|
||||||
}
|
|
||||||
|
|
||||||
foundPieces.Sort((a, b) =>
|
|
||||||
{
|
|
||||||
float angleA = Mathf.Atan2(a.transform.localPosition.z, a.transform.localPosition.x);
|
|
||||||
float angleB = Mathf.Atan2(b.transform.localPosition.z, b.transform.localPosition.x);
|
|
||||||
return angleA.CompareTo(angleB);
|
|
||||||
});
|
|
||||||
|
|
||||||
pieces = foundPieces.ToArray();
|
|
||||||
|
|
||||||
for (int i = 0; i < pieces.Length; i++)
|
|
||||||
{
|
|
||||||
pieces[i].Initialize(i, pieceMaxHealth);
|
|
||||||
}
|
|
||||||
|
|
||||||
Debug.Log($"GlassRingController: collected {pieces.Length} pieces.");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ApplyProjectileImpact(int hitIndex, ProjectileBehaviour projectile, float charge01, Vector3 hitPoint)
|
|
||||||
{
|
|
||||||
if (pieces == null || pieces.Length == 0) return;
|
|
||||||
|
|
||||||
float sigma = Mathf.Max(0.01f, projectile.sigma);
|
|
||||||
float chargeMultiplier = 0.55f + 1.45f * Mathf.Pow(charge01, 1.4f);
|
|
||||||
|
|
||||||
bool anyHealthChanged = false;
|
|
||||||
bool anyNewBreak = false;
|
|
||||||
|
|
||||||
for (int i = 0; i < pieces.Length; i++)
|
|
||||||
{
|
|
||||||
GlassPiece piece = pieces[i];
|
|
||||||
if (piece == null || piece.IsBroken) continue;
|
|
||||||
|
|
||||||
int d = CircularDistance(i, hitIndex, pieces.Length);
|
|
||||||
float gaussian = Mathf.Exp(-(d * d) / (2f * sigma * sigma));
|
|
||||||
|
|
||||||
if (gaussian < 0.005f) continue;
|
|
||||||
|
|
||||||
float damage = projectile.baseDamage * chargeMultiplier * gaussian;
|
|
||||||
if (i == hitIndex)
|
|
||||||
damage *= projectile.directHitMultiplier;
|
|
||||||
|
|
||||||
Vector3 impulseDir = piece.transform.position - hitPoint;
|
|
||||||
if (impulseDir.sqrMagnitude < 0.0001f)
|
|
||||||
impulseDir = piece.transform.position - transform.position;
|
|
||||||
|
|
||||||
float impulse = projectile.breakImpulse * chargeMultiplier * gaussian;
|
|
||||||
if (i == hitIndex)
|
|
||||||
impulse *= projectile.directHitMultiplier;
|
|
||||||
|
|
||||||
bool brokeNow = piece.ApplyDamage(damage, hitPoint, impulseDir, impulse);
|
|
||||||
|
|
||||||
anyHealthChanged = true;
|
|
||||||
if (brokeNow)
|
|
||||||
anyNewBreak = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (anyNewBreak)
|
|
||||||
{
|
|
||||||
PlayBreakSound();
|
|
||||||
}
|
|
||||||
else if (anyHealthChanged)
|
|
||||||
{
|
|
||||||
PlayDamageSound();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void PlayDamageSound()
|
|
||||||
{
|
|
||||||
if (audioSource != null && damageClip != null)
|
|
||||||
audioSource.PlayOneShot(damageClip, damageVolume);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void PlayBreakSound()
|
|
||||||
{
|
|
||||||
if (audioSource != null && breakClip != null)
|
|
||||||
audioSource.PlayOneShot(breakClip, breakVolume);
|
|
||||||
}
|
|
||||||
|
|
||||||
private int CircularDistance(int a, int b, int count)
|
|
||||||
{
|
|
||||||
int raw = Mathf.Abs(a - b);
|
|
||||||
return Mathf.Min(raw, count - raw);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 6e58a520817cb224f921c4c329dfdb29
|
guid: 832a89cb6f62a5240a99d84d09f0a0eb
|
||||||
PrefabImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
8
Assets/MainScreenUI.meta
Normal file
8
Assets/MainScreenUI.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9f4c3c97db77f7847a963acfa80db83b
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/MainScreenUI/Materials.meta
Normal file
8
Assets/MainScreenUI/Materials.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 624830e44386e5d45a391630cd88151d
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
84
Assets/MainScreenUI/Materials/Zeme_Textura.mat
Normal file
84
Assets/MainScreenUI/Materials/Zeme_Textura.mat
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: Zeme_Textura
|
||||||
|
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_Parent: {fileID: 0}
|
||||||
|
m_ModifiedSerializedProperties: 0
|
||||||
|
m_ValidKeywords: []
|
||||||
|
m_InvalidKeywords: []
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_LockedProperties:
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _BumpMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailAlbedoMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailMask:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailNormalMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _EmissionMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: d1443c0777d81e24caecc3991b8bf225, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MetallicGlossMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _OcclusionMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _ParallaxMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
m_Floats:
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.5
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _ZWrite: 1
|
||||||
|
m_Colors:
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
|
m_AllowLocking: 1
|
||||||
8
Assets/MainScreenUI/Materials/Zeme_Textura.mat.meta
Normal file
8
Assets/MainScreenUI/Materials/Zeme_Textura.mat.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 299795d658d037841b1552f783d462c3
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
17
Assets/MainScreenUI/RotaceZeme.cs
Normal file
17
Assets/MainScreenUI/RotaceZeme.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
//clankr
|
||||||
|
public class RotaceZeme : MonoBehaviour
|
||||||
|
{
|
||||||
|
public float rychlost = 20f;
|
||||||
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update is called once per frame
|
||||||
|
void Update()
|
||||||
|
{
|
||||||
|
transform.Rotate(Vector3.up, rychlost * Time.deltaTime);
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/MainScreenUI/RotaceZeme.cs.meta
Normal file
2
Assets/MainScreenUI/RotaceZeme.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2167308ece2e6664fa472e3dff700350
|
||||||
84
Assets/MainScreenUI/Zeme_Material.mat
Normal file
84
Assets/MainScreenUI/Zeme_Material.mat
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: Zeme_Material
|
||||||
|
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_Parent: {fileID: 0}
|
||||||
|
m_ModifiedSerializedProperties: 0
|
||||||
|
m_ValidKeywords: []
|
||||||
|
m_InvalidKeywords: []
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_LockedProperties:
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _BumpMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailAlbedoMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailMask:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailNormalMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _EmissionMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: d1443c0777d81e24caecc3991b8bf225, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MetallicGlossMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _OcclusionMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _ParallaxMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
m_Floats:
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.414
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _ZWrite: 1
|
||||||
|
m_Colors:
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
|
m_AllowLocking: 1
|
||||||
8
Assets/MainScreenUI/Zeme_Material.mat.meta
Normal file
8
Assets/MainScreenUI/Zeme_Material.mat.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4cf6d1d65bc4af24fa762f6801fcc7c4
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/MainScreenUI/Zeme_Textura.png
Normal file
BIN
Assets/MainScreenUI/Zeme_Textura.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 404 KiB |
143
Assets/MainScreenUI/Zeme_Textura.png.meta
Normal file
143
Assets/MainScreenUI/Zeme_Textura.png.meta
Normal file
@@ -0,0 +1,143 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d1443c0777d81e24caecc3991b8bf225
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 13
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 1
|
||||||
|
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: 0
|
||||||
|
wrapV: 0
|
||||||
|
wrapW: 0
|
||||||
|
nPOTScale: 1
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 0
|
||||||
|
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: 0
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 0
|
||||||
|
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: 2
|
||||||
|
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
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: iOS
|
||||||
|
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: []
|
||||||
|
outline: []
|
||||||
|
customData:
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spriteCustomMetadata:
|
||||||
|
entries: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
mipmapLimitGroupName:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
39
Assets/MainScreenUI/Zeme_vystup.renderTexture
Normal file
39
Assets/MainScreenUI/Zeme_vystup.renderTexture
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!84 &8400000
|
||||||
|
RenderTexture:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: Zeme_vystup
|
||||||
|
m_ImageContentsHash:
|
||||||
|
serializedVersion: 2
|
||||||
|
Hash: 00000000000000000000000000000000
|
||||||
|
m_IsAlphaChannelOptional: 0
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Width: 1048
|
||||||
|
m_Height: 1048
|
||||||
|
m_AntiAliasing: 1
|
||||||
|
m_MipCount: -1
|
||||||
|
m_DepthStencilFormat: 94
|
||||||
|
m_ColorFormat: 8
|
||||||
|
m_MipMap: 0
|
||||||
|
m_GenerateMips: 1
|
||||||
|
m_SRGB: 0
|
||||||
|
m_UseDynamicScale: 0
|
||||||
|
m_UseDynamicScaleExplicit: 0
|
||||||
|
m_BindMS: 0
|
||||||
|
m_EnableCompatibleFormat: 1
|
||||||
|
m_EnableRandomWrite: 0
|
||||||
|
m_TextureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_FilterMode: 1
|
||||||
|
m_Aniso: 0
|
||||||
|
m_MipBias: 0
|
||||||
|
m_WrapU: 1
|
||||||
|
m_WrapV: 1
|
||||||
|
m_WrapW: 1
|
||||||
|
m_Dimension: 2
|
||||||
|
m_VolumeDepth: 1
|
||||||
|
m_ShadowSamplingMode: 2
|
||||||
8
Assets/MainScreenUI/Zeme_vystup.renderTexture.meta
Normal file
8
Assets/MainScreenUI/Zeme_vystup.renderTexture.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4d595312cdcdd094cbe411227603ceea
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 8400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/MainScreenUI/Zmekole_geosusv2.fbx
Normal file
BIN
Assets/MainScreenUI/Zmekole_geosusv2.fbx
Normal file
Binary file not shown.
110
Assets/MainScreenUI/Zmekole_geosusv2.fbx.meta
Normal file
110
Assets/MainScreenUI/Zmekole_geosusv2.fbx.meta
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0e125acbe6e192344a3f1c6d4a54f131
|
||||||
|
ModelImporter:
|
||||||
|
serializedVersion: 24200
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
materials:
|
||||||
|
materialImportMode: 2
|
||||||
|
materialName: 0
|
||||||
|
materialSearch: 1
|
||||||
|
materialLocation: 1
|
||||||
|
animations:
|
||||||
|
legacyGenerateAnimations: 4
|
||||||
|
bakeSimulation: 0
|
||||||
|
resampleCurves: 1
|
||||||
|
optimizeGameObjects: 0
|
||||||
|
removeConstantScaleCurves: 0
|
||||||
|
motionNodeName:
|
||||||
|
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: 0
|
||||||
|
meshes:
|
||||||
|
lODScreenPercentages: []
|
||||||
|
globalScale: 1
|
||||||
|
meshCompression: 0
|
||||||
|
addColliders: 0
|
||||||
|
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
|
||||||
|
generateMeshLods: 0
|
||||||
|
meshLodGenerationFlags: 0
|
||||||
|
maximumMeshLod: -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:
|
||||||
@@ -7,8 +7,8 @@ Material:
|
|||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_Name: image
|
m_Name: textik
|
||||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
m_Parent: {fileID: 0}
|
m_Parent: {fileID: 0}
|
||||||
m_ModifiedSerializedProperties: 0
|
m_ModifiedSerializedProperties: 0
|
||||||
m_ValidKeywords: []
|
m_ValidKeywords: []
|
||||||
@@ -17,18 +17,12 @@ Material:
|
|||||||
m_EnableInstancingVariants: 0
|
m_EnableInstancingVariants: 0
|
||||||
m_DoubleSidedGI: 0
|
m_DoubleSidedGI: 0
|
||||||
m_CustomRenderQueue: -1
|
m_CustomRenderQueue: -1
|
||||||
stringTagMap:
|
stringTagMap: {}
|
||||||
RenderType: Opaque
|
disabledShaderPasses: []
|
||||||
disabledShaderPasses:
|
|
||||||
- MOTIONVECTORS
|
|
||||||
m_LockedProperties:
|
m_LockedProperties:
|
||||||
m_SavedProperties:
|
m_SavedProperties:
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TexEnvs:
|
m_TexEnvs:
|
||||||
- _BaseMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _BumpMap:
|
- _BumpMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
@@ -65,72 +59,26 @@ Material:
|
|||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
- _SpecGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_Lightmaps:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_LightmapsInd:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_ShadowMasks:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Ints: []
|
m_Ints: []
|
||||||
m_Floats:
|
m_Floats:
|
||||||
- _AddPrecomputedVelocity: 0
|
|
||||||
- _AlphaClip: 0
|
|
||||||
- _AlphaToMask: 0
|
|
||||||
- _Blend: 0
|
|
||||||
- _BlendModePreserveSpecular: 1
|
|
||||||
- _BumpScale: 1
|
- _BumpScale: 1
|
||||||
- _ClearCoatMask: 0
|
|
||||||
- _ClearCoatSmoothness: 0
|
|
||||||
- _Cull: 2
|
|
||||||
- _Cutoff: 0.5
|
- _Cutoff: 0.5
|
||||||
- _DetailAlbedoMapScale: 1
|
|
||||||
- _DetailNormalMapScale: 1
|
- _DetailNormalMapScale: 1
|
||||||
- _DstBlend: 0
|
- _DstBlend: 0
|
||||||
- _DstBlendAlpha: 0
|
- _GlossMapScale: 1
|
||||||
- _EnvironmentReflections: 1
|
- _Glossiness: 0.583
|
||||||
- _GlossMapScale: 0
|
- _GlossyReflections: 1
|
||||||
- _Glossiness: 0
|
- _Metallic: 0
|
||||||
- _GlossyReflections: 0
|
- _Mode: 0
|
||||||
- _Metallic: 1
|
|
||||||
- _OcclusionStrength: 1
|
- _OcclusionStrength: 1
|
||||||
- _Parallax: 0.005
|
- _Parallax: 0.02
|
||||||
- _QueueOffset: 0
|
|
||||||
- _ReceiveShadows: 1
|
|
||||||
- _Smoothness: 0.5
|
|
||||||
- _SmoothnessTextureChannel: 0
|
- _SmoothnessTextureChannel: 0
|
||||||
- _SpecularHighlights: 1
|
- _SpecularHighlights: 1
|
||||||
- _SrcBlend: 1
|
- _SrcBlend: 1
|
||||||
- _SrcBlendAlpha: 1
|
- _UVSec: 0
|
||||||
- _Surface: 0
|
|
||||||
- _WorkflowMode: 1
|
|
||||||
- _ZWrite: 1
|
- _ZWrite: 1
|
||||||
m_Colors:
|
m_Colors:
|
||||||
- _BaseColor: {r: 1, g: 0, b: 0, a: 1}
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
- _Color: {r: 1, g: 0, b: 0, a: 1}
|
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
|
||||||
m_BuildTextureStacks: []
|
m_BuildTextureStacks: []
|
||||||
m_AllowLocking: 1
|
m_AllowLocking: 1
|
||||||
--- !u!114 &5990837927860787962
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 11
|
|
||||||
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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
version: 10
|
|
||||||
8
Assets/MainScreenUI/textik.mat.meta
Normal file
8
Assets/MainScreenUI/textik.mat.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e00f6447ca0dc7646b73cb387d282a47
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/Materials.meta
Normal file
8
Assets/Materials.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9515330c365f1b34a9574fcf5b50aef9
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
37
Assets/Materials/HDR_multi_nebulae_1.mat
Normal file
37
Assets/Materials/HDR_multi_nebulae_1.mat
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: HDR_multi_nebulae_1
|
||||||
|
m_Shader: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_Parent: {fileID: 0}
|
||||||
|
m_ModifiedSerializedProperties: 0
|
||||||
|
m_ValidKeywords: []
|
||||||
|
m_InvalidKeywords: []
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_LockedProperties:
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _Tex:
|
||||||
|
m_Texture: {fileID: 8900000, guid: bbe6dc8ab03108a488246bb64d4078ff, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
m_Floats:
|
||||||
|
- _Exposure: 1
|
||||||
|
- _Rotation: 0
|
||||||
|
m_Colors:
|
||||||
|
- _Tint: {r: 0.5, g: 0.5, b: 0.5, a: 0.5}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
|
m_AllowLocking: 1
|
||||||
8
Assets/Materials/HDR_multi_nebulae_1.mat.meta
Normal file
8
Assets/Materials/HDR_multi_nebulae_1.mat.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b8ea26def9472484b87d08513faa2756
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -7,8 +7,8 @@ Material:
|
|||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_Name: bramboracolor1
|
m_Name: New Material
|
||||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
m_Parent: {fileID: 0}
|
m_Parent: {fileID: 0}
|
||||||
m_ModifiedSerializedProperties: 0
|
m_ModifiedSerializedProperties: 0
|
||||||
m_ValidKeywords: []
|
m_ValidKeywords: []
|
||||||
@@ -17,18 +17,12 @@ Material:
|
|||||||
m_EnableInstancingVariants: 0
|
m_EnableInstancingVariants: 0
|
||||||
m_DoubleSidedGI: 0
|
m_DoubleSidedGI: 0
|
||||||
m_CustomRenderQueue: -1
|
m_CustomRenderQueue: -1
|
||||||
stringTagMap:
|
stringTagMap: {}
|
||||||
RenderType: Opaque
|
disabledShaderPasses: []
|
||||||
disabledShaderPasses:
|
|
||||||
- MOTIONVECTORS
|
|
||||||
m_LockedProperties:
|
m_LockedProperties:
|
||||||
m_SavedProperties:
|
m_SavedProperties:
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TexEnvs:
|
m_TexEnvs:
|
||||||
- _BaseMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _BumpMap:
|
- _BumpMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
@@ -65,72 +59,26 @@ Material:
|
|||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
- _SpecGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_Lightmaps:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_LightmapsInd:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_ShadowMasks:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Ints: []
|
m_Ints: []
|
||||||
m_Floats:
|
m_Floats:
|
||||||
- _AddPrecomputedVelocity: 0
|
|
||||||
- _AlphaClip: 0
|
|
||||||
- _AlphaToMask: 0
|
|
||||||
- _Blend: 0
|
|
||||||
- _BlendModePreserveSpecular: 1
|
|
||||||
- _BumpScale: 1
|
- _BumpScale: 1
|
||||||
- _ClearCoatMask: 0
|
|
||||||
- _ClearCoatSmoothness: 0
|
|
||||||
- _Cull: 2
|
|
||||||
- _Cutoff: 0.5
|
- _Cutoff: 0.5
|
||||||
- _DetailAlbedoMapScale: 1
|
|
||||||
- _DetailNormalMapScale: 1
|
- _DetailNormalMapScale: 1
|
||||||
- _DstBlend: 0
|
- _DstBlend: 0
|
||||||
- _DstBlendAlpha: 0
|
- _GlossMapScale: 1
|
||||||
- _EnvironmentReflections: 1
|
- _Glossiness: 0.5
|
||||||
- _GlossMapScale: 0
|
- _GlossyReflections: 1
|
||||||
- _Glossiness: 0
|
|
||||||
- _GlossyReflections: 0
|
|
||||||
- _Metallic: 0
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
- _OcclusionStrength: 1
|
- _OcclusionStrength: 1
|
||||||
- _Parallax: 0.005
|
- _Parallax: 0.02
|
||||||
- _QueueOffset: 0
|
|
||||||
- _ReceiveShadows: 1
|
|
||||||
- _Smoothness: 0.5
|
|
||||||
- _SmoothnessTextureChannel: 0
|
- _SmoothnessTextureChannel: 0
|
||||||
- _SpecularHighlights: 1
|
- _SpecularHighlights: 1
|
||||||
- _SrcBlend: 1
|
- _SrcBlend: 1
|
||||||
- _SrcBlendAlpha: 1
|
- _UVSec: 0
|
||||||
- _Surface: 0
|
|
||||||
- _WorkflowMode: 1
|
|
||||||
- _ZWrite: 1
|
- _ZWrite: 1
|
||||||
m_Colors:
|
m_Colors:
|
||||||
- _BaseColor: {r: 0.735849, g: 0.38103268, b: 0.024296915, a: 1}
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
- _Color: {r: 0.735849, g: 0.38103265, b: 0.024296915, a: 1}
|
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
|
||||||
m_BuildTextureStacks: []
|
m_BuildTextureStacks: []
|
||||||
m_AllowLocking: 1
|
m_AllowLocking: 1
|
||||||
--- !u!114 &6922828213143962760
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 11
|
|
||||||
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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
version: 10
|
|
||||||
8
Assets/New Material.mat.meta
Normal file
8
Assets/New Material.mat.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 50581ab638a21e9488545b33a5c248d4
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
%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: 11500000, guid: fcf7219bab7fe46a1ad266029b2fee19, type: 3}
|
|
||||||
m_Name: Readme
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
icon: {fileID: 2800000, guid: cbea0258d69fdef4ba73fa582f0e2004, type: 3}
|
|
||||||
title: Universal Mobile 3D Template
|
|
||||||
sections:
|
|
||||||
- heading: Welcome to the Universal Mobile 3D Template
|
|
||||||
text: This template sets up the right Project settings for developing a 3D game
|
|
||||||
on mobile. Also it includes some of the recommended packages for developing
|
|
||||||
on mobile.
|
|
||||||
linkText:
|
|
||||||
url:
|
|
||||||
- heading: Forums iOS
|
|
||||||
text:
|
|
||||||
linkText: Get answers and support
|
|
||||||
url: https://discussions.unity.com/tag/iOS
|
|
||||||
- heading: Forums Android
|
|
||||||
text:
|
|
||||||
linkText: Get answers and support
|
|
||||||
url: https://discussions.unity.com/tag/Android
|
|
||||||
- heading: Bugs
|
|
||||||
text:
|
|
||||||
linkText: Report any bugs
|
|
||||||
url: https://unity3d.com/unity/qa/bug-reporting
|
|
||||||
- heading: Template feedback
|
|
||||||
text:
|
|
||||||
linkText: Share your feedback on this template with us
|
|
||||||
url: https://unitysoftware.co1.qualtrics.com/jfe/form/SV_b8GWOIYxi4l6PDE?templatename=mobile3d
|
|
||||||
loadedLayout: 1
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
using UnityEngine;
|
|
||||||
|
|
||||||
// Old placeholder file kept only so the project compiles cleanly.
|
|
||||||
// Actual gameplay now lives in TimingWheelShooter.
|
|
||||||
public class RingShooterMinigameController : MonoBehaviour
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
using UnityEngine;
|
|
||||||
|
|
||||||
public class RotateDiamond : MonoBehaviour
|
|
||||||
{
|
|
||||||
public float rotationSpeed = 90f;
|
|
||||||
|
|
||||||
void Update()
|
|
||||||
{
|
|
||||||
transform.Rotate(Vector3.forward, rotationSpeed * Time.deltaTime, Space.Self);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
8
Assets/Scenes.meta
Normal file
8
Assets/Scenes.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fa2dc9f32b7ad7c419b06e4ad6866e09
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
2245
Assets/Scenes/Client.unity
Normal file
2245
Assets/Scenes/Client.unity
Normal file
File diff suppressed because it is too large
Load Diff
7
Assets/Scenes/Client.unity.meta
Normal file
7
Assets/Scenes/Client.unity.meta
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 99349b837685d91408e5eb5bac237678
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/Scenes/Main Screen Scenes.meta
Normal file
8
Assets/Scenes/Main Screen Scenes.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0d2bf6fbc15c94c4db51c326dbaa84ee
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
1700
Assets/Scenes/Main Screen Scenes/are u sure.unity
Normal file
1700
Assets/Scenes/Main Screen Scenes/are u sure.unity
Normal file
File diff suppressed because it is too large
Load Diff
7
Assets/Scenes/Main Screen Scenes/are u sure.unity.meta
Normal file
7
Assets/Scenes/Main Screen Scenes/are u sure.unity.meta
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 42774ddf02ffd1747898d12625c667b0
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/Scenes/Main Screen Scenes/asmr zvuky klikani.meta
Normal file
8
Assets/Scenes/Main Screen Scenes/asmr zvuky klikani.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3347745980e97824f9dda5b6043b57e7
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,23 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fa27202025a24b6418e644af57608959
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 8
|
||||||
|
defaultSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
preloadAudioData: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6b025445e5a6de74780d752e5354a0a9
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,143 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bbe6dc8ab03108a488246bb64d4078ff
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 13
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 1
|
||||||
|
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: 0
|
||||||
|
wrapV: 0
|
||||||
|
wrapW: 0
|
||||||
|
nPOTScale: 1
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 0
|
||||||
|
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: 0
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 0
|
||||||
|
textureShape: 2
|
||||||
|
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: 1
|
||||||
|
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
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: iOS
|
||||||
|
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: []
|
||||||
|
outline: []
|
||||||
|
customData:
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spriteCustomMetadata:
|
||||||
|
entries: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
mipmapLimitGroupName:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0cff73c6845b7cb40877239c2a7e25fc
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: HDR_multi_nebulae_1
|
||||||
|
m_Shader: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_Parent: {fileID: 0}
|
||||||
|
m_ModifiedSerializedProperties: 0
|
||||||
|
m_ValidKeywords: []
|
||||||
|
m_InvalidKeywords: []
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_LockedProperties:
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _Tex:
|
||||||
|
m_Texture: {fileID: 8900000, guid: bbe6dc8ab03108a488246bb64d4078ff, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
m_Floats:
|
||||||
|
- _Exposure: 1
|
||||||
|
- _Rotation: 0
|
||||||
|
m_Colors:
|
||||||
|
- _Tint: {r: 0.5, g: 0.5, b: 0.5, a: 0.5}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
|
m_AllowLocking: 1
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 628af2744593aaf4fbadc7aec37b8b41
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
@@ -0,0 +1,143 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 34374eb00c6777a4e973713c0773ad4a
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
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: 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
|
||||||
|
swizzle: 50462976
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
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
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 4
|
||||||
|
buildTarget: iOS
|
||||||
|
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: []
|
||||||
|
outline: []
|
||||||
|
customData:
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spriteCustomMetadata:
|
||||||
|
entries: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
mipmapLimitGroupName:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 52bdfdf1d7e2c6c40a8cdd507da420a8
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a173f2d64d95c1a4f804bea472fbde86
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1957a0d79dde42e4f87f545f2382a021
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d85917757cff61e46bfbffa6ca06d452
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 883a00b104e0a9f4195fa2ed71d989e6
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 635ebc63895da35489dd1dba41818ea5
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8c12c1f44e7180c4caf6d4a2d8690d7a
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ac97b3e85e9597848a8eb1b9e30e59a9
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 324e45e0718fdb44ca40dfde0812dd33
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4f264d72c6679ab4393c88b7a78aaf6a
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4fd8bc71bae2ede41a6ae4eb91913236
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 50c6d237583d76d4bbd65fea0f7c92e2
|
||||||
|
TrueTypeFontImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 4
|
||||||
|
fontSize: 16
|
||||||
|
forceTextureCase: -2
|
||||||
|
characterSpacing: 0
|
||||||
|
characterPadding: 1
|
||||||
|
includeFontData: 1
|
||||||
|
fontNames:
|
||||||
|
- Nunito
|
||||||
|
fallbackFontReferences: []
|
||||||
|
customCharacters:
|
||||||
|
fontRenderingMode: 0
|
||||||
|
ascentCalculationMode: 1
|
||||||
|
useLegacyBoundsCalculation: 0
|
||||||
|
shouldRoundAdvanceValue: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user