├── .gitattributes
├── .github
└── workflows
│ └── main.yml
├── .gitignore
├── Assets
├── Test.unity
├── Test.unity.meta
├── Test.uxml
├── Test.uxml.meta
├── UI.meta
├── UI
│ ├── DefaultSettings.asset
│ ├── DefaultSettings.asset.meta
│ ├── DefaultTheme.tss
│ └── DefaultTheme.tss.meta
├── URP.meta
└── URP
│ ├── DefaultRenderer.asset
│ ├── DefaultRenderer.asset.meta
│ ├── DefaultSettings.asset
│ ├── DefaultSettings.asset.meta
│ ├── GlobalSettings.asset
│ ├── GlobalSettings.asset.meta
│ ├── URP.asset
│ └── URP.asset.meta
├── Packages
├── jp.keijiro.klak.ui-toolkit-assets
│ ├── Runtime.meta
│ ├── Runtime
│ │ ├── Fonts.meta
│ │ ├── Fonts
│ │ │ ├── Inconsolata.meta
│ │ │ ├── Inconsolata
│ │ │ │ ├── OFL.txt
│ │ │ │ ├── OFL.txt.meta
│ │ │ │ ├── README.txt
│ │ │ │ ├── README.txt.meta
│ │ │ │ ├── static.meta
│ │ │ │ └── static
│ │ │ │ │ ├── Inconsolata-Bold.ttf
│ │ │ │ │ ├── Inconsolata-Bold.ttf.meta
│ │ │ │ │ ├── Inconsolata-Light.ttf
│ │ │ │ │ └── Inconsolata-Light.ttf.meta
│ │ │ ├── Inter.meta
│ │ │ └── Inter
│ │ │ │ ├── OFL.txt
│ │ │ │ ├── OFL.txt.meta
│ │ │ │ ├── README.txt
│ │ │ │ ├── README.txt.meta
│ │ │ │ ├── static.meta
│ │ │ │ └── static
│ │ │ │ ├── Inter_18pt-Bold.ttf
│ │ │ │ ├── Inter_18pt-Bold.ttf.meta
│ │ │ │ ├── Inter_18pt-Light.ttf
│ │ │ │ └── Inter_18pt-Light.ttf.meta
│ │ ├── Scripts.meta
│ │ ├── Scripts
│ │ │ ├── AspectRatioElement.cs
│ │ │ ├── AspectRatioElement.cs.meta
│ │ │ ├── ClampedFloatField.cs
│ │ │ ├── ClampedFloatField.cs.meta
│ │ │ ├── ClampedIntegerField.cs
│ │ │ ├── ClampedIntegerField.cs.meta
│ │ │ ├── Klak.UIToolkit.Runtime.asmdef
│ │ │ └── Klak.UIToolkit.Runtime.asmdef.meta
│ │ ├── Textures.meta
│ │ ├── Textures
│ │ │ ├── SlideCursor.png
│ │ │ └── SlideCursor.png.meta
│ │ ├── Themes.meta
│ │ └── Themes
│ │ │ ├── Tena.uss
│ │ │ └── Tena.uss.meta
│ ├── package.json
│ └── package.json.meta
├── manifest.json
└── packages-lock.json
└── ProjectSettings
├── AudioManager.asset
├── ClusterInputManager.asset
├── CommonBurstAotSettings.json
├── DynamicsManager.asset
├── EditorBuildSettings.asset
├── EditorSettings.asset
├── GraphicsSettings.asset
├── InputManager.asset
├── MemorySettings.asset
├── MultiplayerManager.asset
├── NavMeshAreas.asset
├── PackageManagerSettings.asset
├── Physics2DSettings.asset
├── PresetManager.asset
├── ProjectSettings.asset
├── ProjectVersion.txt
├── QualitySettings.asset
├── SceneTemplateSettings.json
├── ShaderGraphSettings.asset
├── TagManager.asset
├── TimeManager.asset
├── URPProjectSettings.asset
├── UnityConnectSettings.asset
├── VFXManager.asset
└── VersionControlSettings.asset
/.gitattributes:
--------------------------------------------------------------------------------
1 | * -text
2 |
3 | *.cs text eol=lf diff=csharp
4 | *.shader text eol=lf
5 | *.cginc text eol=lf
6 | *.hlsl text eol=lf
7 | *.compute text eol=lf
8 |
9 | *.meta text eol=lf
10 |
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | name: UPM on npsjs.com
2 | on:
3 | release:
4 | types: [created]
5 | jobs:
6 | publish:
7 | runs-on: ubuntu-latest
8 | steps:
9 | - uses: actions/checkout@v2
10 | - uses: actions/setup-node@v2
11 | with:
12 | registry-url: 'https://registry.npmjs.org'
13 | - run: npm publish
14 | working-directory: Packages/jp.keijiro.klak.ui-toolkit-assets
15 | env:
16 | NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
17 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | Thumbs.db
2 | Desktop.ini
3 | .DS_Store
4 | *.swp
5 |
6 | /Library
7 | /Logs
8 | /Recordings
9 | /Temp
10 | /UserSettings
11 |
--------------------------------------------------------------------------------
/Assets/Test.unity:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!29 &1
4 | OcclusionCullingSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | m_OcclusionBakeSettings:
8 | smallestOccluder: 5
9 | smallestHole: 0.25
10 | backfaceThreshold: 100
11 | m_SceneGUID: 00000000000000000000000000000000
12 | m_OcclusionCullingData: {fileID: 0}
13 | --- !u!104 &2
14 | RenderSettings:
15 | m_ObjectHideFlags: 0
16 | serializedVersion: 10
17 | m_Fog: 0
18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
19 | m_FogMode: 3
20 | m_FogDensity: 0.01
21 | m_LinearFogStart: 0
22 | m_LinearFogEnd: 300
23 | m_AmbientSkyColor: {r: 0, g: 0, b: 0, a: 1}
24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
26 | m_AmbientIntensity: 1
27 | m_AmbientMode: 3
28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
29 | m_SkyboxMaterial: {fileID: 0}
30 | m_HaloStrength: 0.5
31 | m_FlareStrength: 1
32 | m_FlareFadeSpeed: 3
33 | m_HaloTexture: {fileID: 0}
34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
35 | m_DefaultReflectionMode: 1
36 | m_DefaultReflectionResolution: 128
37 | m_ReflectionBounces: 1
38 | m_ReflectionIntensity: 1
39 | m_CustomReflection: {fileID: 0}
40 | m_Sun: {fileID: 0}
41 | m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
42 | m_UseRadianceAmbientProbe: 0
43 | --- !u!157 &3
44 | LightmapSettings:
45 | m_ObjectHideFlags: 0
46 | serializedVersion: 12
47 | m_GISettings:
48 | serializedVersion: 2
49 | m_BounceScale: 1
50 | m_IndirectOutputScale: 1
51 | m_AlbedoBoost: 1
52 | m_EnvironmentLightingMode: 0
53 | m_EnableBakedLightmaps: 1
54 | m_EnableRealtimeLightmaps: 0
55 | m_LightmapEditorSettings:
56 | serializedVersion: 12
57 | m_Resolution: 2
58 | m_BakeResolution: 40
59 | m_AtlasSize: 1024
60 | m_AO: 0
61 | m_AOMaxDistance: 1
62 | m_CompAOExponent: 1
63 | m_CompAOExponentDirect: 0
64 | m_ExtractAmbientOcclusion: 0
65 | m_Padding: 2
66 | m_LightmapParameters: {fileID: 0}
67 | m_LightmapsBakeMode: 1
68 | m_TextureCompression: 1
69 | m_ReflectionCompression: 2
70 | m_MixedBakeMode: 2
71 | m_BakeBackend: 1
72 | m_PVRSampling: 1
73 | m_PVRDirectSampleCount: 32
74 | m_PVRSampleCount: 512
75 | m_PVRBounces: 2
76 | m_PVREnvironmentSampleCount: 256
77 | m_PVREnvironmentReferencePointCount: 2048
78 | m_PVRFilteringMode: 1
79 | m_PVRDenoiserTypeDirect: 1
80 | m_PVRDenoiserTypeIndirect: 1
81 | m_PVRDenoiserTypeAO: 1
82 | m_PVRFilterTypeDirect: 0
83 | m_PVRFilterTypeIndirect: 0
84 | m_PVRFilterTypeAO: 0
85 | m_PVREnvironmentMIS: 1
86 | m_PVRCulling: 1
87 | m_PVRFilteringGaussRadiusDirect: 1
88 | m_PVRFilteringGaussRadiusIndirect: 5
89 | m_PVRFilteringGaussRadiusAO: 2
90 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5
91 | m_PVRFilteringAtrousPositionSigmaIndirect: 2
92 | m_PVRFilteringAtrousPositionSigmaAO: 1
93 | m_ExportTrainingData: 0
94 | m_TrainingDataDestination: TrainingData
95 | m_LightProbeSampleCountMultiplier: 4
96 | m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0}
97 | m_LightingSettings: {fileID: 0}
98 | --- !u!196 &4
99 | NavMeshSettings:
100 | serializedVersion: 2
101 | m_ObjectHideFlags: 0
102 | m_BuildSettings:
103 | serializedVersion: 3
104 | agentTypeID: 0
105 | agentRadius: 0.5
106 | agentHeight: 2
107 | agentSlope: 45
108 | agentClimb: 0.4
109 | ledgeDropHeight: 0
110 | maxJumpAcrossDistance: 0
111 | minRegionArea: 2
112 | manualCellSize: 0
113 | cellSize: 0.16666667
114 | manualTileSize: 0
115 | tileSize: 256
116 | buildHeightMesh: 0
117 | maxJobWorkers: 0
118 | preserveTilesOutsideBounds: 0
119 | debug:
120 | m_Flags: 0
121 | m_NavMeshData: {fileID: 0}
122 | --- !u!1 &231048555
123 | GameObject:
124 | m_ObjectHideFlags: 0
125 | m_CorrespondingSourceObject: {fileID: 0}
126 | m_PrefabInstance: {fileID: 0}
127 | m_PrefabAsset: {fileID: 0}
128 | serializedVersion: 6
129 | m_Component:
130 | - component: {fileID: 231048557}
131 | - component: {fileID: 231048556}
132 | m_Layer: 0
133 | m_Name: UI
134 | m_TagString: Untagged
135 | m_Icon: {fileID: 0}
136 | m_NavMeshLayer: 0
137 | m_StaticEditorFlags: 0
138 | m_IsActive: 1
139 | --- !u!114 &231048556
140 | MonoBehaviour:
141 | m_ObjectHideFlags: 0
142 | m_CorrespondingSourceObject: {fileID: 0}
143 | m_PrefabInstance: {fileID: 0}
144 | m_PrefabAsset: {fileID: 0}
145 | m_GameObject: {fileID: 231048555}
146 | m_Enabled: 1
147 | m_EditorHideFlags: 0
148 | m_Script: {fileID: 19102, guid: 0000000000000000e000000000000000, type: 0}
149 | m_Name:
150 | m_EditorClassIdentifier:
151 | m_PanelSettings: {fileID: 11400000, guid: baee66811cd131440a1088b4bf5187ed, type: 2}
152 | m_ParentUI: {fileID: 0}
153 | sourceAsset: {fileID: 9197481963319205126, guid: 4587e37b00da06b43ba4abebc7bfc4bb, type: 3}
154 | m_SortingOrder: 0
155 | m_WorldSpaceSizeMode: 1
156 | m_WorldSpaceWidth: 1920
157 | m_WorldSpaceHeight: 1080
158 | --- !u!4 &231048557
159 | Transform:
160 | m_ObjectHideFlags: 0
161 | m_CorrespondingSourceObject: {fileID: 0}
162 | m_PrefabInstance: {fileID: 0}
163 | m_PrefabAsset: {fileID: 0}
164 | m_GameObject: {fileID: 231048555}
165 | serializedVersion: 2
166 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
167 | m_LocalPosition: {x: 0, y: 0, z: 0}
168 | m_LocalScale: {x: 1, y: 1, z: 1}
169 | m_ConstrainProportionsScale: 0
170 | m_Children: []
171 | m_Father: {fileID: 0}
172 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
173 | --- !u!1001 &351653253
174 | PrefabInstance:
175 | m_ObjectHideFlags: 0
176 | serializedVersion: 2
177 | m_Modification:
178 | serializedVersion: 3
179 | m_TransformParent: {fileID: 0}
180 | m_Modifications:
181 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
182 | propertyPath: m_LocalPosition.x
183 | value: -0
184 | objectReference: {fileID: 0}
185 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
186 | propertyPath: m_LocalPosition.y
187 | value: 0
188 | objectReference: {fileID: 0}
189 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
190 | propertyPath: m_LocalPosition.z
191 | value: 0
192 | objectReference: {fileID: 0}
193 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
194 | propertyPath: m_LocalRotation.w
195 | value: 0.92387956
196 | objectReference: {fileID: 0}
197 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
198 | propertyPath: m_LocalRotation.x
199 | value: 0
200 | objectReference: {fileID: 0}
201 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
202 | propertyPath: m_LocalRotation.y
203 | value: 0.38268343
204 | objectReference: {fileID: 0}
205 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
206 | propertyPath: m_LocalRotation.z
207 | value: 0
208 | objectReference: {fileID: 0}
209 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
210 | propertyPath: m_LocalEulerAnglesHint.x
211 | value: 0
212 | objectReference: {fileID: 0}
213 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
214 | propertyPath: m_LocalEulerAnglesHint.y
215 | value: 45
216 | objectReference: {fileID: 0}
217 | - target: {fileID: -8679921383154817045, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
218 | propertyPath: m_LocalEulerAnglesHint.z
219 | value: 0
220 | objectReference: {fileID: 0}
221 | - target: {fileID: 919132149155446097, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
222 | propertyPath: m_Name
223 | value: UnityMaterialBall
224 | objectReference: {fileID: 0}
225 | m_RemovedComponents: []
226 | m_RemovedGameObjects: []
227 | m_AddedGameObjects: []
228 | m_AddedComponents: []
229 | m_SourcePrefab: {fileID: 100100000, guid: 39857cfad1651644682ff5b772e6e697, type: 3}
230 | --- !u!1 &517540850
231 | GameObject:
232 | m_ObjectHideFlags: 0
233 | m_CorrespondingSourceObject: {fileID: 0}
234 | m_PrefabInstance: {fileID: 0}
235 | m_PrefabAsset: {fileID: 0}
236 | serializedVersion: 6
237 | m_Component:
238 | - component: {fileID: 517540853}
239 | - component: {fileID: 517540852}
240 | - component: {fileID: 517540851}
241 | m_Layer: 0
242 | m_Name: Floor
243 | m_TagString: Untagged
244 | m_Icon: {fileID: 0}
245 | m_NavMeshLayer: 0
246 | m_StaticEditorFlags: 0
247 | m_IsActive: 1
248 | --- !u!23 &517540851
249 | MeshRenderer:
250 | m_ObjectHideFlags: 0
251 | m_CorrespondingSourceObject: {fileID: 0}
252 | m_PrefabInstance: {fileID: 0}
253 | m_PrefabAsset: {fileID: 0}
254 | m_GameObject: {fileID: 517540850}
255 | m_Enabled: 1
256 | m_CastShadows: 1
257 | m_ReceiveShadows: 1
258 | m_DynamicOccludee: 1
259 | m_StaticShadowCaster: 0
260 | m_MotionVectors: 1
261 | m_LightProbeUsage: 1
262 | m_ReflectionProbeUsage: 1
263 | m_RayTracingMode: 2
264 | m_RayTraceProcedural: 0
265 | m_RayTracingAccelStructBuildFlagsOverride: 0
266 | m_RayTracingAccelStructBuildFlags: 1
267 | m_SmallMeshCulling: 1
268 | m_RenderingLayerMask: 1
269 | m_RendererPriority: 0
270 | m_Materials:
271 | - {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
272 | m_StaticBatchInfo:
273 | firstSubMesh: 0
274 | subMeshCount: 0
275 | m_StaticBatchRoot: {fileID: 0}
276 | m_ProbeAnchor: {fileID: 0}
277 | m_LightProbeVolumeOverride: {fileID: 0}
278 | m_ScaleInLightmap: 1
279 | m_ReceiveGI: 1
280 | m_PreserveUVs: 0
281 | m_IgnoreNormalsForChartDetection: 0
282 | m_ImportantGI: 0
283 | m_StitchLightmapSeams: 1
284 | m_SelectedEditorRenderState: 3
285 | m_MinimumChartSize: 4
286 | m_AutoUVMaxDistance: 0.5
287 | m_AutoUVMaxAngle: 89
288 | m_LightmapParameters: {fileID: 0}
289 | m_SortingLayerID: 0
290 | m_SortingLayer: 0
291 | m_SortingOrder: 0
292 | m_AdditionalVertexStreams: {fileID: 0}
293 | --- !u!33 &517540852
294 | MeshFilter:
295 | m_ObjectHideFlags: 0
296 | m_CorrespondingSourceObject: {fileID: 0}
297 | m_PrefabInstance: {fileID: 0}
298 | m_PrefabAsset: {fileID: 0}
299 | m_GameObject: {fileID: 517540850}
300 | m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0}
301 | --- !u!4 &517540853
302 | Transform:
303 | m_ObjectHideFlags: 0
304 | m_CorrespondingSourceObject: {fileID: 0}
305 | m_PrefabInstance: {fileID: 0}
306 | m_PrefabAsset: {fileID: 0}
307 | m_GameObject: {fileID: 517540850}
308 | serializedVersion: 2
309 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
310 | m_LocalPosition: {x: 0, y: 0, z: 0}
311 | m_LocalScale: {x: 1, y: 1, z: 1}
312 | m_ConstrainProportionsScale: 0
313 | m_Children: []
314 | m_Father: {fileID: 0}
315 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
316 | --- !u!1 &901228807
317 | GameObject:
318 | m_ObjectHideFlags: 0
319 | m_CorrespondingSourceObject: {fileID: 0}
320 | m_PrefabInstance: {fileID: 0}
321 | m_PrefabAsset: {fileID: 0}
322 | serializedVersion: 6
323 | m_Component:
324 | - component: {fileID: 901228808}
325 | m_Layer: 0
326 | m_Name: Light Pivot
327 | m_TagString: Untagged
328 | m_Icon: {fileID: 0}
329 | m_NavMeshLayer: 0
330 | m_StaticEditorFlags: 0
331 | m_IsActive: 1
332 | --- !u!4 &901228808
333 | Transform:
334 | m_ObjectHideFlags: 0
335 | m_CorrespondingSourceObject: {fileID: 0}
336 | m_PrefabInstance: {fileID: 0}
337 | m_PrefabAsset: {fileID: 0}
338 | m_GameObject: {fileID: 901228807}
339 | serializedVersion: 2
340 | m_LocalRotation: {x: 0.26239592, y: 0.36692443, z: -0.108687945, w: 0.885834}
341 | m_LocalPosition: {x: 0, y: 0.5, z: 0}
342 | m_LocalScale: {x: 1, y: 1, z: 1}
343 | m_ConstrainProportionsScale: 0
344 | m_Children:
345 | - {fileID: 1175918391}
346 | m_Father: {fileID: 0}
347 | m_LocalEulerAnglesHint: {x: 33, y: 45, z: 0}
348 | --- !u!1 &1175918390
349 | GameObject:
350 | m_ObjectHideFlags: 0
351 | m_CorrespondingSourceObject: {fileID: 0}
352 | m_PrefabInstance: {fileID: 0}
353 | m_PrefabAsset: {fileID: 0}
354 | serializedVersion: 6
355 | m_Component:
356 | - component: {fileID: 1175918391}
357 | - component: {fileID: 1175918393}
358 | - component: {fileID: 1175918392}
359 | m_Layer: 0
360 | m_Name: Spot Light
361 | m_TagString: Untagged
362 | m_Icon: {fileID: 0}
363 | m_NavMeshLayer: 0
364 | m_StaticEditorFlags: 0
365 | m_IsActive: 1
366 | --- !u!4 &1175918391
367 | Transform:
368 | m_ObjectHideFlags: 0
369 | m_CorrespondingSourceObject: {fileID: 0}
370 | m_PrefabInstance: {fileID: 0}
371 | m_PrefabAsset: {fileID: 0}
372 | m_GameObject: {fileID: 1175918390}
373 | serializedVersion: 2
374 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
375 | m_LocalPosition: {x: 0, y: 0, z: -5}
376 | m_LocalScale: {x: 1, y: 1, z: 1}
377 | m_ConstrainProportionsScale: 0
378 | m_Children: []
379 | m_Father: {fileID: 901228808}
380 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
381 | --- !u!114 &1175918392
382 | MonoBehaviour:
383 | m_ObjectHideFlags: 0
384 | m_CorrespondingSourceObject: {fileID: 0}
385 | m_PrefabInstance: {fileID: 0}
386 | m_PrefabAsset: {fileID: 0}
387 | m_GameObject: {fileID: 1175918390}
388 | m_Enabled: 1
389 | m_EditorHideFlags: 0
390 | m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}
391 | m_Name:
392 | m_EditorClassIdentifier:
393 | m_Version: 3
394 | m_UsePipelineSettings: 1
395 | m_AdditionalLightsShadowResolutionTier: 2
396 | m_LightLayerMask: 1
397 | m_RenderingLayers: 1
398 | m_CustomShadowLayers: 0
399 | m_ShadowLayerMask: 1
400 | m_ShadowRenderingLayers: 1
401 | m_LightCookieSize: {x: 1, y: 1}
402 | m_LightCookieOffset: {x: 0, y: 0}
403 | m_SoftShadowQuality: 0
404 | --- !u!108 &1175918393
405 | Light:
406 | m_ObjectHideFlags: 0
407 | m_CorrespondingSourceObject: {fileID: 0}
408 | m_PrefabInstance: {fileID: 0}
409 | m_PrefabAsset: {fileID: 0}
410 | m_GameObject: {fileID: 1175918390}
411 | m_Enabled: 1
412 | serializedVersion: 11
413 | m_Type: 0
414 | m_Color: {r: 1, g: 1, b: 1, a: 1}
415 | m_Intensity: 45
416 | m_Range: 10
417 | m_SpotAngle: 30
418 | m_InnerSpotAngle: 0
419 | m_CookieSize: 10
420 | m_Shadows:
421 | m_Type: 2
422 | m_Resolution: -1
423 | m_CustomResolution: -1
424 | m_Strength: 1
425 | m_Bias: 0.05
426 | m_NormalBias: 0.4
427 | m_NearPlane: 0.2
428 | m_CullingMatrixOverride:
429 | e00: 1
430 | e01: 0
431 | e02: 0
432 | e03: 0
433 | e10: 0
434 | e11: 1
435 | e12: 0
436 | e13: 0
437 | e20: 0
438 | e21: 0
439 | e22: 1
440 | e23: 0
441 | e30: 0
442 | e31: 0
443 | e32: 0
444 | e33: 1
445 | m_UseCullingMatrixOverride: 0
446 | m_Cookie: {fileID: 0}
447 | m_DrawHalo: 0
448 | m_Flare: {fileID: 0}
449 | m_RenderMode: 0
450 | m_CullingMask:
451 | serializedVersion: 2
452 | m_Bits: 4294967295
453 | m_RenderingLayerMask: 1
454 | m_Lightmapping: 4
455 | m_LightShadowCasterMode: 0
456 | m_AreaSize: {x: 1, y: 1}
457 | m_BounceIntensity: 1
458 | m_ColorTemperature: 6570
459 | m_UseColorTemperature: 0
460 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
461 | m_UseBoundingSphereOverride: 0
462 | m_UseViewFrustumForShadowCasterCull: 1
463 | m_ForceVisible: 0
464 | m_ShadowRadius: 0
465 | m_ShadowAngle: 0
466 | m_LightUnit: 1
467 | m_LuxAtDistance: 1
468 | m_EnableSpotReflector: 1
469 | --- !u!1 &1272491450
470 | GameObject:
471 | m_ObjectHideFlags: 0
472 | m_CorrespondingSourceObject: {fileID: 0}
473 | m_PrefabInstance: {fileID: 0}
474 | m_PrefabAsset: {fileID: 0}
475 | serializedVersion: 6
476 | m_Component:
477 | - component: {fileID: 1272491451}
478 | - component: {fileID: 1272491453}
479 | - component: {fileID: 1272491452}
480 | m_Layer: 0
481 | m_Name: Spot Light
482 | m_TagString: Untagged
483 | m_Icon: {fileID: 0}
484 | m_NavMeshLayer: 0
485 | m_StaticEditorFlags: 0
486 | m_IsActive: 1
487 | --- !u!4 &1272491451
488 | Transform:
489 | m_ObjectHideFlags: 0
490 | m_CorrespondingSourceObject: {fileID: 0}
491 | m_PrefabInstance: {fileID: 0}
492 | m_PrefabAsset: {fileID: 0}
493 | m_GameObject: {fileID: 1272491450}
494 | serializedVersion: 2
495 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
496 | m_LocalPosition: {x: 0, y: 0, z: -5}
497 | m_LocalScale: {x: 1, y: 1, z: 1}
498 | m_ConstrainProportionsScale: 0
499 | m_Children: []
500 | m_Father: {fileID: 1627151783}
501 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
502 | --- !u!114 &1272491452
503 | MonoBehaviour:
504 | m_ObjectHideFlags: 0
505 | m_CorrespondingSourceObject: {fileID: 0}
506 | m_PrefabInstance: {fileID: 0}
507 | m_PrefabAsset: {fileID: 0}
508 | m_GameObject: {fileID: 1272491450}
509 | m_Enabled: 1
510 | m_EditorHideFlags: 0
511 | m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}
512 | m_Name:
513 | m_EditorClassIdentifier:
514 | m_Version: 3
515 | m_UsePipelineSettings: 1
516 | m_AdditionalLightsShadowResolutionTier: 2
517 | m_LightLayerMask: 1
518 | m_RenderingLayers: 1
519 | m_CustomShadowLayers: 0
520 | m_ShadowLayerMask: 1
521 | m_ShadowRenderingLayers: 1
522 | m_LightCookieSize: {x: 1, y: 1}
523 | m_LightCookieOffset: {x: 0, y: 0}
524 | m_SoftShadowQuality: 0
525 | --- !u!108 &1272491453
526 | Light:
527 | m_ObjectHideFlags: 0
528 | m_CorrespondingSourceObject: {fileID: 0}
529 | m_PrefabInstance: {fileID: 0}
530 | m_PrefabAsset: {fileID: 0}
531 | m_GameObject: {fileID: 1272491450}
532 | m_Enabled: 1
533 | serializedVersion: 11
534 | m_Type: 0
535 | m_Color: {r: 0.8867924, g: 0, b: 0.23567094, a: 1}
536 | m_Intensity: 15
537 | m_Range: 10
538 | m_SpotAngle: 30
539 | m_InnerSpotAngle: 0
540 | m_CookieSize: 10
541 | m_Shadows:
542 | m_Type: 2
543 | m_Resolution: -1
544 | m_CustomResolution: -1
545 | m_Strength: 1
546 | m_Bias: 0.05
547 | m_NormalBias: 0.4
548 | m_NearPlane: 0.2
549 | m_CullingMatrixOverride:
550 | e00: 1
551 | e01: 0
552 | e02: 0
553 | e03: 0
554 | e10: 0
555 | e11: 1
556 | e12: 0
557 | e13: 0
558 | e20: 0
559 | e21: 0
560 | e22: 1
561 | e23: 0
562 | e30: 0
563 | e31: 0
564 | e32: 0
565 | e33: 1
566 | m_UseCullingMatrixOverride: 0
567 | m_Cookie: {fileID: 0}
568 | m_DrawHalo: 0
569 | m_Flare: {fileID: 0}
570 | m_RenderMode: 0
571 | m_CullingMask:
572 | serializedVersion: 2
573 | m_Bits: 4294967295
574 | m_RenderingLayerMask: 1
575 | m_Lightmapping: 4
576 | m_LightShadowCasterMode: 0
577 | m_AreaSize: {x: 1, y: 1}
578 | m_BounceIntensity: 1
579 | m_ColorTemperature: 6570
580 | m_UseColorTemperature: 0
581 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
582 | m_UseBoundingSphereOverride: 0
583 | m_UseViewFrustumForShadowCasterCull: 1
584 | m_ForceVisible: 0
585 | m_ShadowRadius: 0
586 | m_ShadowAngle: 0
587 | m_LightUnit: 1
588 | m_LuxAtDistance: 1
589 | m_EnableSpotReflector: 1
590 | --- !u!1 &1411473415
591 | GameObject:
592 | m_ObjectHideFlags: 0
593 | m_CorrespondingSourceObject: {fileID: 0}
594 | m_PrefabInstance: {fileID: 0}
595 | m_PrefabAsset: {fileID: 0}
596 | serializedVersion: 6
597 | m_Component:
598 | - component: {fileID: 1411473419}
599 | - component: {fileID: 1411473418}
600 | - component: {fileID: 1411473416}
601 | m_Layer: 0
602 | m_Name: Main Camera
603 | m_TagString: MainCamera
604 | m_Icon: {fileID: 0}
605 | m_NavMeshLayer: 0
606 | m_StaticEditorFlags: 0
607 | m_IsActive: 1
608 | --- !u!114 &1411473416
609 | MonoBehaviour:
610 | m_ObjectHideFlags: 0
611 | m_CorrespondingSourceObject: {fileID: 0}
612 | m_PrefabInstance: {fileID: 0}
613 | m_PrefabAsset: {fileID: 0}
614 | m_GameObject: {fileID: 1411473415}
615 | m_Enabled: 1
616 | m_EditorHideFlags: 0
617 | m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3}
618 | m_Name:
619 | m_EditorClassIdentifier:
620 | m_RenderShadows: 1
621 | m_RequiresDepthTextureOption: 2
622 | m_RequiresOpaqueTextureOption: 2
623 | m_CameraType: 0
624 | m_Cameras: []
625 | m_RendererIndex: -1
626 | m_VolumeLayerMask:
627 | serializedVersion: 2
628 | m_Bits: 1
629 | m_VolumeTrigger: {fileID: 0}
630 | m_VolumeFrameworkUpdateModeOption: 2
631 | m_RenderPostProcessing: 1
632 | m_Antialiasing: 0
633 | m_AntialiasingQuality: 2
634 | m_StopNaN: 0
635 | m_Dithering: 1
636 | m_ClearDepth: 1
637 | m_AllowXRRendering: 1
638 | m_AllowHDROutput: 1
639 | m_UseScreenCoordOverride: 0
640 | m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0}
641 | m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0}
642 | m_RequiresDepthTexture: 0
643 | m_RequiresColorTexture: 0
644 | m_Version: 2
645 | m_TaaSettings:
646 | m_Quality: 3
647 | m_FrameInfluence: 0.1
648 | m_JitterScale: 1
649 | m_MipBias: 0
650 | m_VarianceClampScale: 0.9
651 | m_ContrastAdaptiveSharpening: 0
652 | --- !u!20 &1411473418
653 | Camera:
654 | m_ObjectHideFlags: 0
655 | m_CorrespondingSourceObject: {fileID: 0}
656 | m_PrefabInstance: {fileID: 0}
657 | m_PrefabAsset: {fileID: 0}
658 | m_GameObject: {fileID: 1411473415}
659 | m_Enabled: 1
660 | serializedVersion: 2
661 | m_ClearFlags: 2
662 | m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
663 | m_projectionMatrixMode: 1
664 | m_GateFitMode: 2
665 | m_FOVAxisMode: 0
666 | m_Iso: 800
667 | m_ShutterSpeed: 0.01
668 | m_Aperture: 1.2
669 | m_FocusDistance: 10
670 | m_FocalLength: 55
671 | m_BladeCount: 5
672 | m_Curvature: {x: 2, y: 11}
673 | m_BarrelClipping: 0.25
674 | m_Anamorphism: 0
675 | m_SensorSize: {x: 24.892, y: 18.669}
676 | m_LensShift: {x: 0, y: 0}
677 | m_NormalizedViewPortRect:
678 | serializedVersion: 2
679 | x: 0
680 | y: 0
681 | width: 1
682 | height: 1
683 | near clip plane: 0.1
684 | far clip plane: 100
685 | field of view: 20
686 | orthographic: 0
687 | orthographic size: 5
688 | m_Depth: 0
689 | m_CullingMask:
690 | serializedVersion: 2
691 | m_Bits: 4294967295
692 | m_RenderingPath: -1
693 | m_TargetTexture: {fileID: 0}
694 | m_TargetDisplay: 0
695 | m_TargetEye: 3
696 | m_HDR: 1
697 | m_AllowMSAA: 1
698 | m_AllowDynamicResolution: 0
699 | m_ForceIntoRT: 0
700 | m_OcclusionCulling: 0
701 | m_StereoConvergence: 10
702 | m_StereoSeparation: 0.022
703 | --- !u!4 &1411473419
704 | Transform:
705 | m_ObjectHideFlags: 0
706 | m_CorrespondingSourceObject: {fileID: 0}
707 | m_PrefabInstance: {fileID: 0}
708 | m_PrefabAsset: {fileID: 0}
709 | m_GameObject: {fileID: 1411473415}
710 | serializedVersion: 2
711 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
712 | m_LocalPosition: {x: 0, y: 0, z: -5}
713 | m_LocalScale: {x: 1, y: 1, z: 1}
714 | m_ConstrainProportionsScale: 0
715 | m_Children: []
716 | m_Father: {fileID: 1602446956}
717 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
718 | --- !u!1 &1602446955
719 | GameObject:
720 | m_ObjectHideFlags: 0
721 | m_CorrespondingSourceObject: {fileID: 0}
722 | m_PrefabInstance: {fileID: 0}
723 | m_PrefabAsset: {fileID: 0}
724 | serializedVersion: 6
725 | m_Component:
726 | - component: {fileID: 1602446956}
727 | m_Layer: 0
728 | m_Name: Camera Pivot
729 | m_TagString: Untagged
730 | m_Icon: {fileID: 0}
731 | m_NavMeshLayer: 0
732 | m_StaticEditorFlags: 0
733 | m_IsActive: 1
734 | --- !u!4 &1602446956
735 | Transform:
736 | m_ObjectHideFlags: 0
737 | m_CorrespondingSourceObject: {fileID: 0}
738 | m_PrefabInstance: {fileID: 0}
739 | m_PrefabAsset: {fileID: 0}
740 | m_GameObject: {fileID: 1602446955}
741 | serializedVersion: 2
742 | m_LocalRotation: {x: 0.10452846, y: 0, z: 0, w: 0.9945219}
743 | m_LocalPosition: {x: 0, y: 0.5, z: 0}
744 | m_LocalScale: {x: 1, y: 1, z: 1}
745 | m_ConstrainProportionsScale: 0
746 | m_Children:
747 | - {fileID: 1411473419}
748 | m_Father: {fileID: 0}
749 | m_LocalEulerAnglesHint: {x: 12, y: 0, z: 0}
750 | --- !u!1 &1627151782
751 | GameObject:
752 | m_ObjectHideFlags: 0
753 | m_CorrespondingSourceObject: {fileID: 0}
754 | m_PrefabInstance: {fileID: 0}
755 | m_PrefabAsset: {fileID: 0}
756 | serializedVersion: 6
757 | m_Component:
758 | - component: {fileID: 1627151783}
759 | m_Layer: 0
760 | m_Name: Light Pivot
761 | m_TagString: Untagged
762 | m_Icon: {fileID: 0}
763 | m_NavMeshLayer: 0
764 | m_StaticEditorFlags: 0
765 | m_IsActive: 1
766 | --- !u!4 &1627151783
767 | Transform:
768 | m_ObjectHideFlags: 0
769 | m_CorrespondingSourceObject: {fileID: 0}
770 | m_PrefabInstance: {fileID: 0}
771 | m_PrefabAsset: {fileID: 0}
772 | m_GameObject: {fileID: 1627151782}
773 | serializedVersion: 2
774 | m_LocalRotation: {x: 0.06676521, y: -0.6403416, z: 0.05602265, w: 0.7631295}
775 | m_LocalPosition: {x: 0, y: 0.5, z: 0}
776 | m_LocalScale: {x: 1, y: 1, z: 1}
777 | m_ConstrainProportionsScale: 0
778 | m_Children:
779 | - {fileID: 1272491451}
780 | m_Father: {fileID: 0}
781 | m_LocalEulerAnglesHint: {x: 10, y: -80, z: 0}
782 | --- !u!1660057539 &9223372036854775807
783 | SceneRoots:
784 | m_ObjectHideFlags: 0
785 | m_Roots:
786 | - {fileID: 231048557}
787 | - {fileID: 1602446956}
788 | - {fileID: 901228808}
789 | - {fileID: 1627151783}
790 | - {fileID: 517540853}
791 | - {fileID: 351653253}
792 |
--------------------------------------------------------------------------------
/Assets/Test.unity.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: ff5702dfe30c34fa2a680f20ba104712
3 | DefaultImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Assets/Test.uxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Assets/Test.uxml.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 4587e37b00da06b43ba4abebc7bfc4bb
3 | ScriptedImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 2
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 | script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}
11 |
--------------------------------------------------------------------------------
/Assets/UI.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 8c5a441b557a6b8458d8c193ad7bb01c
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/UI/DefaultSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &11400000
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 0
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 19101, guid: 0000000000000000e000000000000000, type: 0}
13 | m_Name: DefaultSettings
14 | m_EditorClassIdentifier:
15 | themeUss: {fileID: -4733365628477956816, guid: fc13e98ced2863a498ac563b785f68af, type: 3}
16 | m_DisableNoThemeWarning: 0
17 | m_TargetTexture: {fileID: 0}
18 | m_RenderMode: 0
19 | m_WorldSpaceLayer: 0
20 | m_ScaleMode: 1
21 | m_ReferenceSpritePixelsPerUnit: 100
22 | m_PixelsPerUnit: 100
23 | m_Scale: 1
24 | m_ReferenceDpi: 96
25 | m_FallbackDpi: 96
26 | m_ReferenceResolution: {x: 1200, y: 800}
27 | m_ScreenMatchMode: 0
28 | m_Match: 0
29 | m_SortingOrder: 0
30 | m_TargetDisplay: 0
31 | m_BindingLogLevel: 0
32 | m_ClearDepthStencil: 1
33 | m_ClearColor: 0
34 | m_ColorClearValue: {r: 0, g: 0, b: 0, a: 0}
35 | m_VertexBudget: 0
36 | m_DynamicAtlasSettings:
37 | m_MinAtlasSize: 64
38 | m_MaxAtlasSize: 4096
39 | m_MaxSubTextureSize: 64
40 | m_ActiveFilters: -1
41 | m_AtlasBlitShader: {fileID: 9101, guid: 0000000000000000f000000000000000, type: 0}
42 | m_RuntimeShader: {fileID: 9100, guid: 0000000000000000f000000000000000, type: 0}
43 | m_RuntimeWorldShader: {fileID: 9102, guid: 0000000000000000f000000000000000, type: 0}
44 | m_ICUDataAsset: {fileID: 0}
45 | forceGammaRendering: 0
46 | textSettings: {fileID: 0}
47 |
--------------------------------------------------------------------------------
/Assets/UI/DefaultSettings.asset.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: baee66811cd131440a1088b4bf5187ed
3 | NativeFormatImporter:
4 | externalObjects: {}
5 | mainObjectFileID: 11400000
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/UI/DefaultTheme.tss:
--------------------------------------------------------------------------------
1 | @import url("unity-theme://default");
2 |
3 | @import url("/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Themes/Tena.uss");
4 | VisualElement {}
5 |
--------------------------------------------------------------------------------
/Assets/UI/DefaultTheme.tss.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: fc13e98ced2863a498ac563b785f68af
3 | ScriptedImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 2
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 | script: {fileID: 12388, guid: 0000000000000000e000000000000000, type: 0}
11 | disableValidation: 0
12 |
--------------------------------------------------------------------------------
/Assets/URP.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: cf7aff1ca29bf457cb3074580db18960
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/URP/DefaultRenderer.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &11400000
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 0
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3}
13 | m_Name: DefaultRenderer
14 | m_EditorClassIdentifier:
15 | debugShaders:
16 | debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3}
17 | hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
18 | probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3}
19 | probeVolumeResources:
20 | probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae, type: 3}
21 | probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607, type: 3}
22 | probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664, type: 3}
23 | probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7, type: 3}
24 | probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe, type: 3}
25 | probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e, type: 3}
26 | m_RendererFeatures: []
27 | m_RendererFeatureMap:
28 | m_UseNativeRenderPass: 0
29 | postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
30 | shaders:
31 | blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3}
32 | copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3}
33 | screenSpaceShadowPS: {fileID: 0}
34 | samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3}
35 | stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3}
36 | fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3}
37 | fallbackLoadingPS: {fileID: 4800000, guid: 7f888aff2ac86494babad1c2c5daeee2, type: 3}
38 | materialErrorPS: {fileID: 0}
39 | coreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3}
40 | coreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3}
41 | blitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3}
42 | cameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3}
43 | screenSpaceLensFlare: {fileID: 4800000, guid: 701880fecb344ea4c9cd0db3407ab287, type: 3}
44 | dataDrivenLensFlare: {fileID: 4800000, guid: 6cda457ac28612740adb23da5d39ea92, type: 3}
45 | m_AssetVersion: 2
46 | m_OpaqueLayerMask:
47 | serializedVersion: 2
48 | m_Bits: 4294967295
49 | m_TransparentLayerMask:
50 | serializedVersion: 2
51 | m_Bits: 4294967295
52 | m_DefaultStencilState:
53 | overrideStencilState: 0
54 | stencilReference: 0
55 | stencilCompareFunction: 8
56 | passOperation: 2
57 | failOperation: 0
58 | zFailOperation: 0
59 | m_ShadowTransparentReceive: 1
60 | m_RenderingMode: 0
61 | m_DepthPrimingMode: 0
62 | m_CopyDepthMode: 1
63 | m_AccurateGbufferNormals: 0
64 | m_IntermediateTextureMode: 1
65 |
--------------------------------------------------------------------------------
/Assets/URP/DefaultRenderer.asset.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 8e1183055e54048bbb725e5812e38d2a
3 | NativeFormatImporter:
4 | externalObjects: {}
5 | mainObjectFileID: 11400000
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/URP/DefaultSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &-9120796142380556075
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 3
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 11500000, guid: ccf1aba9553839d41ae37dd52e9ebcce, type: 3}
13 | m_Name: MotionBlur
14 | m_EditorClassIdentifier:
15 | active: 1
16 | mode:
17 | m_OverrideState: 1
18 | m_Value: 0
19 | quality:
20 | m_OverrideState: 1
21 | m_Value: 0
22 | intensity:
23 | m_OverrideState: 1
24 | m_Value: 0
25 | clamp:
26 | m_OverrideState: 1
27 | m_Value: 0.05
28 | --- !u!114 &-7520857916535256784
29 | MonoBehaviour:
30 | m_ObjectHideFlags: 3
31 | m_CorrespondingSourceObject: {fileID: 0}
32 | m_PrefabInstance: {fileID: 0}
33 | m_PrefabAsset: {fileID: 0}
34 | m_GameObject: {fileID: 0}
35 | m_Enabled: 1
36 | m_EditorHideFlags: 0
37 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3}
38 | m_Name: FilmGrain
39 | m_EditorClassIdentifier:
40 | active: 1
41 | type:
42 | m_OverrideState: 1
43 | m_Value: 0
44 | intensity:
45 | m_OverrideState: 1
46 | m_Value: 0
47 | response:
48 | m_OverrideState: 1
49 | m_Value: 0.8
50 | texture:
51 | m_OverrideState: 1
52 | m_Value: {fileID: 0}
53 | --- !u!114 &-6864251934905688942
54 | MonoBehaviour:
55 | m_ObjectHideFlags: 3
56 | m_CorrespondingSourceObject: {fileID: 0}
57 | m_PrefabInstance: {fileID: 0}
58 | m_PrefabAsset: {fileID: 0}
59 | m_GameObject: {fileID: 0}
60 | m_Enabled: 1
61 | m_EditorHideFlags: 0
62 | m_Script: {fileID: 11500000, guid: fb60a22f311433c4c962b888d1393f88, type: 3}
63 | m_Name: PaniniProjection
64 | m_EditorClassIdentifier:
65 | active: 1
66 | distance:
67 | m_OverrideState: 1
68 | m_Value: 0
69 | cropToFit:
70 | m_OverrideState: 1
71 | m_Value: 1
72 | --- !u!114 &-6792290333236992359
73 | MonoBehaviour:
74 | m_ObjectHideFlags: 3
75 | m_CorrespondingSourceObject: {fileID: 0}
76 | m_PrefabInstance: {fileID: 0}
77 | m_PrefabAsset: {fileID: 0}
78 | m_GameObject: {fileID: 0}
79 | m_Enabled: 1
80 | m_EditorHideFlags: 0
81 | m_Script: {fileID: 11500000, guid: c01700fd266d6914ababb731e09af2eb, type: 3}
82 | m_Name: DepthOfField
83 | m_EditorClassIdentifier:
84 | active: 1
85 | mode:
86 | m_OverrideState: 1
87 | m_Value: 0
88 | gaussianStart:
89 | m_OverrideState: 1
90 | m_Value: 10
91 | gaussianEnd:
92 | m_OverrideState: 1
93 | m_Value: 30
94 | gaussianMaxRadius:
95 | m_OverrideState: 1
96 | m_Value: 1
97 | highQualitySampling:
98 | m_OverrideState: 1
99 | m_Value: 0
100 | focusDistance:
101 | m_OverrideState: 1
102 | m_Value: 10
103 | aperture:
104 | m_OverrideState: 1
105 | m_Value: 5.6
106 | focalLength:
107 | m_OverrideState: 1
108 | m_Value: 50
109 | bladeCount:
110 | m_OverrideState: 1
111 | m_Value: 5
112 | bladeCurvature:
113 | m_OverrideState: 1
114 | m_Value: 1
115 | bladeRotation:
116 | m_OverrideState: 1
117 | m_Value: 0
118 | --- !u!114 &-6453265179316514664
119 | MonoBehaviour:
120 | m_ObjectHideFlags: 3
121 | m_CorrespondingSourceObject: {fileID: 0}
122 | m_PrefabInstance: {fileID: 0}
123 | m_PrefabAsset: {fileID: 0}
124 | m_GameObject: {fileID: 0}
125 | m_Enabled: 1
126 | m_EditorHideFlags: 0
127 | m_Script: {fileID: 11500000, guid: 6bd486065ce11414fa40e631affc4900, type: 3}
128 | m_Name: ProbeVolumesOptions
129 | m_EditorClassIdentifier:
130 | active: 1
131 | normalBias:
132 | m_OverrideState: 1
133 | m_Value: 0.33
134 | viewBias:
135 | m_OverrideState: 1
136 | m_Value: 0
137 | scaleBiasWithMinProbeDistance:
138 | m_OverrideState: 1
139 | m_Value: 0
140 | samplingNoise:
141 | m_OverrideState: 1
142 | m_Value: 0.1
143 | animateSamplingNoise:
144 | m_OverrideState: 1
145 | m_Value: 1
146 | leakReductionMode:
147 | m_OverrideState: 1
148 | m_Value: 1
149 | minValidDotProductValue:
150 | m_OverrideState: 1
151 | m_Value: 0.1
152 | occlusionOnlyReflectionNormalization:
153 | m_OverrideState: 1
154 | m_Value: 1
155 | intensityMultiplier:
156 | m_OverrideState: 0
157 | m_Value: 1
158 | skyOcclusionIntensityMultiplier:
159 | m_OverrideState: 0
160 | m_Value: 1
161 | --- !u!114 &-6176258557410478596
162 | MonoBehaviour:
163 | m_ObjectHideFlags: 3
164 | m_CorrespondingSourceObject: {fileID: 0}
165 | m_PrefabInstance: {fileID: 0}
166 | m_PrefabAsset: {fileID: 0}
167 | m_GameObject: {fileID: 0}
168 | m_Enabled: 1
169 | m_EditorHideFlags: 0
170 | m_Script: {fileID: 11500000, guid: 5485954d14dfb9a4c8ead8edb0ded5b1, type: 3}
171 | m_Name: LiftGammaGain
172 | m_EditorClassIdentifier:
173 | active: 1
174 | lift:
175 | m_OverrideState: 1
176 | m_Value: {x: 1, y: 1, z: 1, w: 0}
177 | gamma:
178 | m_OverrideState: 1
179 | m_Value: {x: 1, y: 1, z: 1, w: 0}
180 | gain:
181 | m_OverrideState: 1
182 | m_Value: {x: 1, y: 1, z: 1, w: 0}
183 | --- !u!114 &-5355241509508365366
184 | MonoBehaviour:
185 | m_ObjectHideFlags: 3
186 | m_CorrespondingSourceObject: {fileID: 0}
187 | m_PrefabInstance: {fileID: 0}
188 | m_PrefabAsset: {fileID: 0}
189 | m_GameObject: {fileID: 0}
190 | m_Enabled: 1
191 | m_EditorHideFlags: 0
192 | m_Script: {fileID: 11500000, guid: cdfbdbb87d3286943a057f7791b43141, type: 3}
193 | m_Name: ChannelMixer
194 | m_EditorClassIdentifier:
195 | active: 1
196 | redOutRedIn:
197 | m_OverrideState: 1
198 | m_Value: 100
199 | redOutGreenIn:
200 | m_OverrideState: 1
201 | m_Value: 0
202 | redOutBlueIn:
203 | m_OverrideState: 1
204 | m_Value: 0
205 | greenOutRedIn:
206 | m_OverrideState: 1
207 | m_Value: 0
208 | greenOutGreenIn:
209 | m_OverrideState: 1
210 | m_Value: 100
211 | greenOutBlueIn:
212 | m_OverrideState: 1
213 | m_Value: 0
214 | blueOutRedIn:
215 | m_OverrideState: 1
216 | m_Value: 0
217 | blueOutGreenIn:
218 | m_OverrideState: 1
219 | m_Value: 0
220 | blueOutBlueIn:
221 | m_OverrideState: 1
222 | m_Value: 100
223 | --- !u!114 &-5287926662598222581
224 | MonoBehaviour:
225 | m_ObjectHideFlags: 3
226 | m_CorrespondingSourceObject: {fileID: 0}
227 | m_PrefabInstance: {fileID: 0}
228 | m_PrefabAsset: {fileID: 0}
229 | m_GameObject: {fileID: 0}
230 | m_Enabled: 1
231 | m_EditorHideFlags: 0
232 | m_Script: {fileID: 11500000, guid: ccf1aba9553839d41ae37dd52e9ebcce, type: 3}
233 | m_Name: MotionBlur
234 | m_EditorClassIdentifier:
235 | active: 1
236 | mode:
237 | m_OverrideState: 1
238 | m_Value: 0
239 | quality:
240 | m_OverrideState: 1
241 | m_Value: 0
242 | intensity:
243 | m_OverrideState: 1
244 | m_Value: 0
245 | clamp:
246 | m_OverrideState: 1
247 | m_Value: 0.05
248 | --- !u!114 &-4925698678466073351
249 | MonoBehaviour:
250 | m_ObjectHideFlags: 3
251 | m_CorrespondingSourceObject: {fileID: 0}
252 | m_PrefabInstance: {fileID: 0}
253 | m_PrefabAsset: {fileID: 0}
254 | m_GameObject: {fileID: 0}
255 | m_Enabled: 1
256 | m_EditorHideFlags: 0
257 | m_Script: {fileID: 11500000, guid: 6bd486065ce11414fa40e631affc4900, type: 3}
258 | m_Name: ProbeVolumesOptions
259 | m_EditorClassIdentifier:
260 | active: 1
261 | normalBias:
262 | m_OverrideState: 1
263 | m_Value: 0.33
264 | viewBias:
265 | m_OverrideState: 1
266 | m_Value: 0
267 | scaleBiasWithMinProbeDistance:
268 | m_OverrideState: 1
269 | m_Value: 0
270 | samplingNoise:
271 | m_OverrideState: 1
272 | m_Value: 0.1
273 | animateSamplingNoise:
274 | m_OverrideState: 1
275 | m_Value: 1
276 | leakReductionMode:
277 | m_OverrideState: 1
278 | m_Value: 1
279 | minValidDotProductValue:
280 | m_OverrideState: 1
281 | m_Value: 0.1
282 | occlusionOnlyReflectionNormalization:
283 | m_OverrideState: 1
284 | m_Value: 1
285 | intensityMultiplier:
286 | m_OverrideState: 1
287 | m_Value: 1
288 | skyOcclusionIntensityMultiplier:
289 | m_OverrideState: 1
290 | m_Value: 1
291 | --- !u!114 &-4448622818307479540
292 | MonoBehaviour:
293 | m_ObjectHideFlags: 3
294 | m_CorrespondingSourceObject: {fileID: 0}
295 | m_PrefabInstance: {fileID: 0}
296 | m_PrefabAsset: {fileID: 0}
297 | m_GameObject: {fileID: 0}
298 | m_Enabled: 1
299 | m_EditorHideFlags: 0
300 | m_Script: {fileID: 11500000, guid: 81180773991d8724ab7f2d216912b564, type: 3}
301 | m_Name: ChromaticAberration
302 | m_EditorClassIdentifier:
303 | active: 1
304 | intensity:
305 | m_OverrideState: 1
306 | m_Value: 0
307 | --- !u!114 &-4231039555465805034
308 | MonoBehaviour:
309 | m_ObjectHideFlags: 3
310 | m_CorrespondingSourceObject: {fileID: 0}
311 | m_PrefabInstance: {fileID: 0}
312 | m_PrefabAsset: {fileID: 0}
313 | m_GameObject: {fileID: 0}
314 | m_Enabled: 1
315 | m_EditorHideFlags: 0
316 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3}
317 | m_Name: Vignette
318 | m_EditorClassIdentifier:
319 | active: 1
320 | color:
321 | m_OverrideState: 1
322 | m_Value: {r: 0, g: 0, b: 0, a: 1}
323 | center:
324 | m_OverrideState: 1
325 | m_Value: {x: 0.5, y: 0.5}
326 | intensity:
327 | m_OverrideState: 1
328 | m_Value: 0
329 | smoothness:
330 | m_OverrideState: 1
331 | m_Value: 0.2
332 | rounded:
333 | m_OverrideState: 1
334 | m_Value: 0
335 | --- !u!114 &-4149848710645123660
336 | MonoBehaviour:
337 | m_ObjectHideFlags: 3
338 | m_CorrespondingSourceObject: {fileID: 0}
339 | m_PrefabInstance: {fileID: 0}
340 | m_PrefabAsset: {fileID: 0}
341 | m_GameObject: {fileID: 0}
342 | m_Enabled: 1
343 | m_EditorHideFlags: 0
344 | m_Script: {fileID: 11500000, guid: 5485954d14dfb9a4c8ead8edb0ded5b1, type: 3}
345 | m_Name: LiftGammaGain
346 | m_EditorClassIdentifier:
347 | active: 1
348 | lift:
349 | m_OverrideState: 1
350 | m_Value: {x: 1, y: 1, z: 1, w: 0}
351 | gamma:
352 | m_OverrideState: 1
353 | m_Value: {x: 1, y: 1, z: 1, w: 0}
354 | gain:
355 | m_OverrideState: 1
356 | m_Value: {x: 1, y: 1, z: 1, w: 0}
357 | --- !u!114 &-3799853250729038328
358 | MonoBehaviour:
359 | m_ObjectHideFlags: 3
360 | m_CorrespondingSourceObject: {fileID: 0}
361 | m_PrefabInstance: {fileID: 0}
362 | m_PrefabAsset: {fileID: 0}
363 | m_GameObject: {fileID: 0}
364 | m_Enabled: 1
365 | m_EditorHideFlags: 0
366 | m_Script: {fileID: 11500000, guid: 81180773991d8724ab7f2d216912b564, type: 3}
367 | m_Name: ChromaticAberration
368 | m_EditorClassIdentifier:
369 | active: 1
370 | intensity:
371 | m_OverrideState: 1
372 | m_Value: 0
373 | --- !u!114 &-3142146884463127872
374 | MonoBehaviour:
375 | m_ObjectHideFlags: 3
376 | m_CorrespondingSourceObject: {fileID: 0}
377 | m_PrefabInstance: {fileID: 0}
378 | m_PrefabAsset: {fileID: 0}
379 | m_GameObject: {fileID: 0}
380 | m_Enabled: 1
381 | m_EditorHideFlags: 0
382 | m_Script: {fileID: 11500000, guid: 70afe9e12c7a7ed47911bb608a23a8ff, type: 3}
383 | m_Name: SplitToning
384 | m_EditorClassIdentifier:
385 | active: 1
386 | shadows:
387 | m_OverrideState: 1
388 | m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
389 | highlights:
390 | m_OverrideState: 1
391 | m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
392 | balance:
393 | m_OverrideState: 1
394 | m_Value: 0
395 | --- !u!114 &-2544773754085936417
396 | MonoBehaviour:
397 | m_ObjectHideFlags: 3
398 | m_CorrespondingSourceObject: {fileID: 0}
399 | m_PrefabInstance: {fileID: 0}
400 | m_PrefabAsset: {fileID: 0}
401 | m_GameObject: {fileID: 0}
402 | m_Enabled: 1
403 | m_EditorHideFlags: 0
404 | m_Script: {fileID: 11500000, guid: 221518ef91623a7438a71fef23660601, type: 3}
405 | m_Name: WhiteBalance
406 | m_EditorClassIdentifier:
407 | active: 1
408 | temperature:
409 | m_OverrideState: 1
410 | m_Value: 0
411 | tint:
412 | m_OverrideState: 1
413 | m_Value: 0
414 | --- !u!114 &-2366242145130774773
415 | MonoBehaviour:
416 | m_ObjectHideFlags: 3
417 | m_CorrespondingSourceObject: {fileID: 0}
418 | m_PrefabInstance: {fileID: 0}
419 | m_PrefabAsset: {fileID: 0}
420 | m_GameObject: {fileID: 0}
421 | m_Enabled: 1
422 | m_EditorHideFlags: 0
423 | m_Script: {fileID: 11500000, guid: cdfbdbb87d3286943a057f7791b43141, type: 3}
424 | m_Name: ChannelMixer
425 | m_EditorClassIdentifier:
426 | active: 1
427 | redOutRedIn:
428 | m_OverrideState: 1
429 | m_Value: 100
430 | redOutGreenIn:
431 | m_OverrideState: 1
432 | m_Value: 0
433 | redOutBlueIn:
434 | m_OverrideState: 1
435 | m_Value: 0
436 | greenOutRedIn:
437 | m_OverrideState: 1
438 | m_Value: 0
439 | greenOutGreenIn:
440 | m_OverrideState: 1
441 | m_Value: 100
442 | greenOutBlueIn:
443 | m_OverrideState: 1
444 | m_Value: 0
445 | blueOutRedIn:
446 | m_OverrideState: 1
447 | m_Value: 0
448 | blueOutGreenIn:
449 | m_OverrideState: 1
450 | m_Value: 0
451 | blueOutBlueIn:
452 | m_OverrideState: 1
453 | m_Value: 100
454 | --- !u!114 &-2168724112180561121
455 | MonoBehaviour:
456 | m_ObjectHideFlags: 3
457 | m_CorrespondingSourceObject: {fileID: 0}
458 | m_PrefabInstance: {fileID: 0}
459 | m_PrefabAsset: {fileID: 0}
460 | m_GameObject: {fileID: 0}
461 | m_Enabled: 1
462 | m_EditorHideFlags: 0
463 | m_Script: {fileID: 11500000, guid: e021b4c809a781e468c2988c016ebbea, type: 3}
464 | m_Name: ColorLookup
465 | m_EditorClassIdentifier:
466 | active: 1
467 | texture:
468 | m_OverrideState: 1
469 | m_Value: {fileID: 0}
470 | dimension: 1
471 | contribution:
472 | m_OverrideState: 1
473 | m_Value: 0
474 | --- !u!114 &-1004743614748514410
475 | MonoBehaviour:
476 | m_ObjectHideFlags: 3
477 | m_CorrespondingSourceObject: {fileID: 0}
478 | m_PrefabInstance: {fileID: 0}
479 | m_PrefabAsset: {fileID: 0}
480 | m_GameObject: {fileID: 0}
481 | m_Enabled: 1
482 | m_EditorHideFlags: 0
483 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3}
484 | m_Name: Tonemapping
485 | m_EditorClassIdentifier:
486 | active: 1
487 | mode:
488 | m_OverrideState: 1
489 | m_Value: 2
490 | neutralHDRRangeReductionMode:
491 | m_OverrideState: 1
492 | m_Value: 2
493 | acesPreset:
494 | m_OverrideState: 1
495 | m_Value: 3
496 | hueShiftAmount:
497 | m_OverrideState: 1
498 | m_Value: 0
499 | detectPaperWhite:
500 | m_OverrideState: 1
501 | m_Value: 0
502 | paperWhite:
503 | m_OverrideState: 1
504 | m_Value: 300
505 | detectBrightnessLimits:
506 | m_OverrideState: 1
507 | m_Value: 1
508 | minNits:
509 | m_OverrideState: 1
510 | m_Value: 0.005
511 | maxNits:
512 | m_OverrideState: 1
513 | m_Value: 1000
514 | --- !u!114 &-706279336052062228
515 | MonoBehaviour:
516 | m_ObjectHideFlags: 3
517 | m_CorrespondingSourceObject: {fileID: 0}
518 | m_PrefabInstance: {fileID: 0}
519 | m_PrefabAsset: {fileID: 0}
520 | m_GameObject: {fileID: 0}
521 | m_Enabled: 1
522 | m_EditorHideFlags: 0
523 | m_Script: {fileID: 11500000, guid: 70afe9e12c7a7ed47911bb608a23a8ff, type: 3}
524 | m_Name: SplitToning
525 | m_EditorClassIdentifier:
526 | active: 1
527 | shadows:
528 | m_OverrideState: 1
529 | m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
530 | highlights:
531 | m_OverrideState: 1
532 | m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
533 | balance:
534 | m_OverrideState: 1
535 | m_Value: 0
536 | --- !u!114 &-578967956310356273
537 | MonoBehaviour:
538 | m_ObjectHideFlags: 3
539 | m_CorrespondingSourceObject: {fileID: 0}
540 | m_PrefabInstance: {fileID: 0}
541 | m_PrefabAsset: {fileID: 0}
542 | m_GameObject: {fileID: 0}
543 | m_Enabled: 1
544 | m_EditorHideFlags: 0
545 | m_Script: {fileID: 11500000, guid: c5e1dc532bcb41949b58bc4f2abfbb7e, type: 3}
546 | m_Name: LensDistortion
547 | m_EditorClassIdentifier:
548 | active: 1
549 | intensity:
550 | m_OverrideState: 1
551 | m_Value: 0
552 | xMultiplier:
553 | m_OverrideState: 1
554 | m_Value: 1
555 | yMultiplier:
556 | m_OverrideState: 1
557 | m_Value: 1
558 | center:
559 | m_OverrideState: 1
560 | m_Value: {x: 0.5, y: 0.5}
561 | scale:
562 | m_OverrideState: 1
563 | m_Value: 1
564 | --- !u!114 &-344330620418574918
565 | MonoBehaviour:
566 | m_ObjectHideFlags: 3
567 | m_CorrespondingSourceObject: {fileID: 0}
568 | m_PrefabInstance: {fileID: 0}
569 | m_PrefabAsset: {fileID: 0}
570 | m_GameObject: {fileID: 0}
571 | m_Enabled: 1
572 | m_EditorHideFlags: 0
573 | m_Script: {fileID: 11500000, guid: c01700fd266d6914ababb731e09af2eb, type: 3}
574 | m_Name: DepthOfField
575 | m_EditorClassIdentifier:
576 | active: 1
577 | mode:
578 | m_OverrideState: 1
579 | m_Value: 0
580 | gaussianStart:
581 | m_OverrideState: 1
582 | m_Value: 10
583 | gaussianEnd:
584 | m_OverrideState: 1
585 | m_Value: 30
586 | gaussianMaxRadius:
587 | m_OverrideState: 1
588 | m_Value: 1
589 | highQualitySampling:
590 | m_OverrideState: 1
591 | m_Value: 0
592 | focusDistance:
593 | m_OverrideState: 1
594 | m_Value: 10
595 | aperture:
596 | m_OverrideState: 1
597 | m_Value: 5.6
598 | focalLength:
599 | m_OverrideState: 1
600 | m_Value: 50
601 | bladeCount:
602 | m_OverrideState: 1
603 | m_Value: 5
604 | bladeCurvature:
605 | m_OverrideState: 1
606 | m_Value: 1
607 | bladeRotation:
608 | m_OverrideState: 1
609 | m_Value: 0
610 | --- !u!114 &-312778853663969991
611 | MonoBehaviour:
612 | m_ObjectHideFlags: 3
613 | m_CorrespondingSourceObject: {fileID: 0}
614 | m_PrefabInstance: {fileID: 0}
615 | m_PrefabAsset: {fileID: 0}
616 | m_GameObject: {fileID: 0}
617 | m_Enabled: 1
618 | m_EditorHideFlags: 0
619 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3}
620 | m_Name: Vignette
621 | m_EditorClassIdentifier:
622 | active: 1
623 | color:
624 | m_OverrideState: 1
625 | m_Value: {r: 0, g: 0, b: 0, a: 1}
626 | center:
627 | m_OverrideState: 1
628 | m_Value: {x: 0.5, y: 0.5}
629 | intensity:
630 | m_OverrideState: 1
631 | m_Value: 0
632 | smoothness:
633 | m_OverrideState: 1
634 | m_Value: 0.2
635 | rounded:
636 | m_OverrideState: 1
637 | m_Value: 0
638 | --- !u!114 &-50243829091123576
639 | MonoBehaviour:
640 | m_ObjectHideFlags: 3
641 | m_CorrespondingSourceObject: {fileID: 0}
642 | m_PrefabInstance: {fileID: 0}
643 | m_PrefabAsset: {fileID: 0}
644 | m_GameObject: {fileID: 0}
645 | m_Enabled: 1
646 | m_EditorHideFlags: 0
647 | m_Script: {fileID: 11500000, guid: 221518ef91623a7438a71fef23660601, type: 3}
648 | m_Name: WhiteBalance
649 | m_EditorClassIdentifier:
650 | active: 1
651 | temperature:
652 | m_OverrideState: 1
653 | m_Value: 0
654 | tint:
655 | m_OverrideState: 1
656 | m_Value: 0
657 | --- !u!114 &11400000
658 | MonoBehaviour:
659 | m_ObjectHideFlags: 0
660 | m_CorrespondingSourceObject: {fileID: 0}
661 | m_PrefabInstance: {fileID: 0}
662 | m_PrefabAsset: {fileID: 0}
663 | m_GameObject: {fileID: 0}
664 | m_Enabled: 1
665 | m_EditorHideFlags: 0
666 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
667 | m_Name: DefaultSettings
668 | m_EditorClassIdentifier:
669 | components:
670 | - {fileID: -344330620418574918}
671 | - {fileID: -706279336052062228}
672 | - {fileID: -1004743614748514410}
673 | - {fileID: 5965119991234464846}
674 | - {fileID: -7520857916535256784}
675 | - {fileID: 5133560544081018527}
676 | - {fileID: 1205113739821503040}
677 | - {fileID: -2544773754085936417}
678 | - {fileID: -3799853250729038328}
679 | - {fileID: 1047378354732401815}
680 | - {fileID: 508192265761873477}
681 | - {fileID: -312778853663969991}
682 | - {fileID: 3299513528900351595}
683 | - {fileID: -5355241509508365366}
684 | - {fileID: 5181252855286590922}
685 | - {fileID: -9120796142380556075}
686 | - {fileID: -6176258557410478596}
687 | - {fileID: 4707630362668634723}
688 | - {fileID: -4925698678466073351}
689 | --- !u!114 &508192265761873477
690 | MonoBehaviour:
691 | m_ObjectHideFlags: 3
692 | m_CorrespondingSourceObject: {fileID: 0}
693 | m_PrefabInstance: {fileID: 0}
694 | m_PrefabAsset: {fileID: 0}
695 | m_GameObject: {fileID: 0}
696 | m_Enabled: 1
697 | m_EditorHideFlags: 0
698 | m_Script: {fileID: 11500000, guid: 3eb4b772797da9440885e8bd939e9560, type: 3}
699 | m_Name: ColorCurves
700 | m_EditorClassIdentifier:
701 | active: 1
702 | master:
703 | m_OverrideState: 1
704 | m_Value:
705 | k__BackingField: 2
706 | m_Loop: 0
707 | m_ZeroValue: 0
708 | m_Range: 1
709 | m_Curve:
710 | serializedVersion: 2
711 | m_Curve:
712 | - serializedVersion: 3
713 | time: 0
714 | value: 0
715 | inSlope: 1
716 | outSlope: 1
717 | tangentMode: 0
718 | weightedMode: 0
719 | inWeight: 0
720 | outWeight: 0
721 | - serializedVersion: 3
722 | time: 1
723 | value: 1
724 | inSlope: 1
725 | outSlope: 1
726 | tangentMode: 0
727 | weightedMode: 0
728 | inWeight: 0
729 | outWeight: 0
730 | m_PreInfinity: 2
731 | m_PostInfinity: 2
732 | m_RotationOrder: 4
733 | red:
734 | m_OverrideState: 1
735 | m_Value:
736 | k__BackingField: 2
737 | m_Loop: 0
738 | m_ZeroValue: 0
739 | m_Range: 1
740 | m_Curve:
741 | serializedVersion: 2
742 | m_Curve:
743 | - serializedVersion: 3
744 | time: 0
745 | value: 0
746 | inSlope: 1
747 | outSlope: 1
748 | tangentMode: 0
749 | weightedMode: 0
750 | inWeight: 0
751 | outWeight: 0
752 | - serializedVersion: 3
753 | time: 1
754 | value: 1
755 | inSlope: 1
756 | outSlope: 1
757 | tangentMode: 0
758 | weightedMode: 0
759 | inWeight: 0
760 | outWeight: 0
761 | m_PreInfinity: 2
762 | m_PostInfinity: 2
763 | m_RotationOrder: 4
764 | green:
765 | m_OverrideState: 1
766 | m_Value:
767 | k__BackingField: 2
768 | m_Loop: 0
769 | m_ZeroValue: 0
770 | m_Range: 1
771 | m_Curve:
772 | serializedVersion: 2
773 | m_Curve:
774 | - serializedVersion: 3
775 | time: 0
776 | value: 0
777 | inSlope: 1
778 | outSlope: 1
779 | tangentMode: 0
780 | weightedMode: 0
781 | inWeight: 0
782 | outWeight: 0
783 | - serializedVersion: 3
784 | time: 1
785 | value: 1
786 | inSlope: 1
787 | outSlope: 1
788 | tangentMode: 0
789 | weightedMode: 0
790 | inWeight: 0
791 | outWeight: 0
792 | m_PreInfinity: 2
793 | m_PostInfinity: 2
794 | m_RotationOrder: 4
795 | blue:
796 | m_OverrideState: 1
797 | m_Value:
798 | k__BackingField: 2
799 | m_Loop: 0
800 | m_ZeroValue: 0
801 | m_Range: 1
802 | m_Curve:
803 | serializedVersion: 2
804 | m_Curve:
805 | - serializedVersion: 3
806 | time: 0
807 | value: 0
808 | inSlope: 1
809 | outSlope: 1
810 | tangentMode: 0
811 | weightedMode: 0
812 | inWeight: 0
813 | outWeight: 0
814 | - serializedVersion: 3
815 | time: 1
816 | value: 1
817 | inSlope: 1
818 | outSlope: 1
819 | tangentMode: 0
820 | weightedMode: 0
821 | inWeight: 0
822 | outWeight: 0
823 | m_PreInfinity: 2
824 | m_PostInfinity: 2
825 | m_RotationOrder: 4
826 | hueVsHue:
827 | m_OverrideState: 1
828 | m_Value:
829 | k__BackingField: 0
830 | m_Loop: 1
831 | m_ZeroValue: 0.5
832 | m_Range: 1
833 | m_Curve:
834 | serializedVersion: 2
835 | m_Curve: []
836 | m_PreInfinity: 2
837 | m_PostInfinity: 2
838 | m_RotationOrder: 4
839 | hueVsSat:
840 | m_OverrideState: 1
841 | m_Value:
842 | k__BackingField: 0
843 | m_Loop: 1
844 | m_ZeroValue: 0.5
845 | m_Range: 1
846 | m_Curve:
847 | serializedVersion: 2
848 | m_Curve: []
849 | m_PreInfinity: 2
850 | m_PostInfinity: 2
851 | m_RotationOrder: 4
852 | satVsSat:
853 | m_OverrideState: 1
854 | m_Value:
855 | k__BackingField: 0
856 | m_Loop: 0
857 | m_ZeroValue: 0.5
858 | m_Range: 1
859 | m_Curve:
860 | serializedVersion: 2
861 | m_Curve: []
862 | m_PreInfinity: 2
863 | m_PostInfinity: 2
864 | m_RotationOrder: 4
865 | lumVsSat:
866 | m_OverrideState: 1
867 | m_Value:
868 | k__BackingField: 0
869 | m_Loop: 0
870 | m_ZeroValue: 0.5
871 | m_Range: 1
872 | m_Curve:
873 | serializedVersion: 2
874 | m_Curve: []
875 | m_PreInfinity: 2
876 | m_PostInfinity: 2
877 | m_RotationOrder: 4
878 | --- !u!114 &608414975382148582
879 | MonoBehaviour:
880 | m_ObjectHideFlags: 3
881 | m_CorrespondingSourceObject: {fileID: 0}
882 | m_PrefabInstance: {fileID: 0}
883 | m_PrefabAsset: {fileID: 0}
884 | m_GameObject: {fileID: 0}
885 | m_Enabled: 1
886 | m_EditorHideFlags: 0
887 | m_Script: {fileID: 11500000, guid: 558a8e2b6826cf840aae193990ba9f2e, type: 3}
888 | m_Name: ShadowsMidtonesHighlights
889 | m_EditorClassIdentifier:
890 | active: 1
891 | shadows:
892 | m_OverrideState: 1
893 | m_Value: {x: 1, y: 1, z: 1, w: 0}
894 | midtones:
895 | m_OverrideState: 1
896 | m_Value: {x: 1, y: 1, z: 1, w: 0}
897 | highlights:
898 | m_OverrideState: 1
899 | m_Value: {x: 1, y: 1, z: 1, w: 0}
900 | shadowsStart:
901 | m_OverrideState: 1
902 | m_Value: 0
903 | shadowsEnd:
904 | m_OverrideState: 1
905 | m_Value: 0.3
906 | highlightsStart:
907 | m_OverrideState: 1
908 | m_Value: 0.55
909 | highlightsEnd:
910 | m_OverrideState: 1
911 | m_Value: 1
912 | --- !u!114 &1038944792467811091
913 | MonoBehaviour:
914 | m_ObjectHideFlags: 3
915 | m_CorrespondingSourceObject: {fileID: 0}
916 | m_PrefabInstance: {fileID: 0}
917 | m_PrefabAsset: {fileID: 0}
918 | m_GameObject: {fileID: 0}
919 | m_Enabled: 1
920 | m_EditorHideFlags: 0
921 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3}
922 | m_Name: ScreenSpaceLensFlare
923 | m_EditorClassIdentifier:
924 | active: 1
925 | intensity:
926 | m_OverrideState: 1
927 | m_Value: 0
928 | tintColor:
929 | m_OverrideState: 1
930 | m_Value: {r: 1, g: 1, b: 1, a: 1}
931 | bloomMip:
932 | m_OverrideState: 1
933 | m_Value: 1
934 | firstFlareIntensity:
935 | m_OverrideState: 1
936 | m_Value: 1
937 | secondaryFlareIntensity:
938 | m_OverrideState: 1
939 | m_Value: 1
940 | warpedFlareIntensity:
941 | m_OverrideState: 1
942 | m_Value: 1
943 | warpedFlareScale:
944 | m_OverrideState: 1
945 | m_Value: {x: 1, y: 1}
946 | samples:
947 | m_OverrideState: 1
948 | m_Value: 1
949 | sampleDimmer:
950 | m_OverrideState: 1
951 | m_Value: 0.5
952 | vignetteEffect:
953 | m_OverrideState: 1
954 | m_Value: 1
955 | startingPosition:
956 | m_OverrideState: 1
957 | m_Value: 1.25
958 | scale:
959 | m_OverrideState: 1
960 | m_Value: 1.5
961 | streaksIntensity:
962 | m_OverrideState: 1
963 | m_Value: 0
964 | streaksLength:
965 | m_OverrideState: 1
966 | m_Value: 0.5
967 | streaksOrientation:
968 | m_OverrideState: 1
969 | m_Value: 0
970 | streaksThreshold:
971 | m_OverrideState: 1
972 | m_Value: 0.25
973 | resolution:
974 | m_OverrideState: 1
975 | m_Value: 4
976 | chromaticAbberationIntensity:
977 | m_OverrideState: 1
978 | m_Value: 0.5
979 | --- !u!114 &1047378354732401815
980 | MonoBehaviour:
981 | m_ObjectHideFlags: 3
982 | m_CorrespondingSourceObject: {fileID: 0}
983 | m_PrefabInstance: {fileID: 0}
984 | m_PrefabAsset: {fileID: 0}
985 | m_GameObject: {fileID: 0}
986 | m_Enabled: 1
987 | m_EditorHideFlags: 0
988 | m_Script: {fileID: 11500000, guid: fb60a22f311433c4c962b888d1393f88, type: 3}
989 | m_Name: PaniniProjection
990 | m_EditorClassIdentifier:
991 | active: 1
992 | distance:
993 | m_OverrideState: 1
994 | m_Value: 0
995 | cropToFit:
996 | m_OverrideState: 1
997 | m_Value: 1
998 | --- !u!114 &1205113739821503040
999 | MonoBehaviour:
1000 | m_ObjectHideFlags: 3
1001 | m_CorrespondingSourceObject: {fileID: 0}
1002 | m_PrefabInstance: {fileID: 0}
1003 | m_PrefabAsset: {fileID: 0}
1004 | m_GameObject: {fileID: 0}
1005 | m_Enabled: 1
1006 | m_EditorHideFlags: 0
1007 | m_Script: {fileID: 11500000, guid: e021b4c809a781e468c2988c016ebbea, type: 3}
1008 | m_Name: ColorLookup
1009 | m_EditorClassIdentifier:
1010 | active: 1
1011 | texture:
1012 | m_OverrideState: 1
1013 | m_Value: {fileID: 0}
1014 | dimension: 1
1015 | contribution:
1016 | m_OverrideState: 1
1017 | m_Value: 0
1018 | --- !u!114 &3299513528900351595
1019 | MonoBehaviour:
1020 | m_ObjectHideFlags: 3
1021 | m_CorrespondingSourceObject: {fileID: 0}
1022 | m_PrefabInstance: {fileID: 0}
1023 | m_PrefabAsset: {fileID: 0}
1024 | m_GameObject: {fileID: 0}
1025 | m_Enabled: 1
1026 | m_EditorHideFlags: 0
1027 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3}
1028 | m_Name: ScreenSpaceLensFlare
1029 | m_EditorClassIdentifier:
1030 | active: 1
1031 | intensity:
1032 | m_OverrideState: 1
1033 | m_Value: 0
1034 | tintColor:
1035 | m_OverrideState: 1
1036 | m_Value: {r: 1, g: 1, b: 1, a: 1}
1037 | bloomMip:
1038 | m_OverrideState: 1
1039 | m_Value: 1
1040 | firstFlareIntensity:
1041 | m_OverrideState: 1
1042 | m_Value: 1
1043 | secondaryFlareIntensity:
1044 | m_OverrideState: 1
1045 | m_Value: 1
1046 | warpedFlareIntensity:
1047 | m_OverrideState: 1
1048 | m_Value: 1
1049 | warpedFlareScale:
1050 | m_OverrideState: 1
1051 | m_Value: {x: 1, y: 1}
1052 | samples:
1053 | m_OverrideState: 1
1054 | m_Value: 1
1055 | sampleDimmer:
1056 | m_OverrideState: 1
1057 | m_Value: 0.5
1058 | vignetteEffect:
1059 | m_OverrideState: 1
1060 | m_Value: 1
1061 | startingPosition:
1062 | m_OverrideState: 1
1063 | m_Value: 1.25
1064 | scale:
1065 | m_OverrideState: 1
1066 | m_Value: 1.5
1067 | streaksIntensity:
1068 | m_OverrideState: 1
1069 | m_Value: 0
1070 | streaksLength:
1071 | m_OverrideState: 1
1072 | m_Value: 0.5
1073 | streaksOrientation:
1074 | m_OverrideState: 1
1075 | m_Value: 0
1076 | streaksThreshold:
1077 | m_OverrideState: 1
1078 | m_Value: 0.25
1079 | resolution:
1080 | m_OverrideState: 1
1081 | m_Value: 4
1082 | chromaticAbberationIntensity:
1083 | m_OverrideState: 1
1084 | m_Value: 0.5
1085 | --- !u!114 &4707630362668634723
1086 | MonoBehaviour:
1087 | m_ObjectHideFlags: 3
1088 | m_CorrespondingSourceObject: {fileID: 0}
1089 | m_PrefabInstance: {fileID: 0}
1090 | m_PrefabAsset: {fileID: 0}
1091 | m_GameObject: {fileID: 0}
1092 | m_Enabled: 1
1093 | m_EditorHideFlags: 0
1094 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3}
1095 | m_Name: Bloom
1096 | m_EditorClassIdentifier:
1097 | active: 1
1098 | skipIterations:
1099 | m_OverrideState: 1
1100 | m_Value: 1
1101 | threshold:
1102 | m_OverrideState: 1
1103 | m_Value: 0.9
1104 | intensity:
1105 | m_OverrideState: 1
1106 | m_Value: 0
1107 | scatter:
1108 | m_OverrideState: 1
1109 | m_Value: 0.7
1110 | clamp:
1111 | m_OverrideState: 1
1112 | m_Value: 65472
1113 | tint:
1114 | m_OverrideState: 1
1115 | m_Value: {r: 1, g: 1, b: 1, a: 1}
1116 | highQualityFiltering:
1117 | m_OverrideState: 1
1118 | m_Value: 0
1119 | downscale:
1120 | m_OverrideState: 1
1121 | m_Value: 0
1122 | maxIterations:
1123 | m_OverrideState: 1
1124 | m_Value: 6
1125 | dirtTexture:
1126 | m_OverrideState: 1
1127 | m_Value: {fileID: 0}
1128 | dimension: 1
1129 | dirtIntensity:
1130 | m_OverrideState: 1
1131 | m_Value: 0
1132 | --- !u!114 &5133560544081018527
1133 | MonoBehaviour:
1134 | m_ObjectHideFlags: 3
1135 | m_CorrespondingSourceObject: {fileID: 0}
1136 | m_PrefabInstance: {fileID: 0}
1137 | m_PrefabAsset: {fileID: 0}
1138 | m_GameObject: {fileID: 0}
1139 | m_Enabled: 1
1140 | m_EditorHideFlags: 0
1141 | m_Script: {fileID: 11500000, guid: 558a8e2b6826cf840aae193990ba9f2e, type: 3}
1142 | m_Name: ShadowsMidtonesHighlights
1143 | m_EditorClassIdentifier:
1144 | active: 1
1145 | shadows:
1146 | m_OverrideState: 1
1147 | m_Value: {x: 1, y: 1, z: 1, w: 0}
1148 | midtones:
1149 | m_OverrideState: 1
1150 | m_Value: {x: 1, y: 1, z: 1, w: 0}
1151 | highlights:
1152 | m_OverrideState: 1
1153 | m_Value: {x: 1, y: 1, z: 1, w: 0}
1154 | shadowsStart:
1155 | m_OverrideState: 1
1156 | m_Value: 0
1157 | shadowsEnd:
1158 | m_OverrideState: 1
1159 | m_Value: 0.3
1160 | highlightsStart:
1161 | m_OverrideState: 1
1162 | m_Value: 0.55
1163 | highlightsEnd:
1164 | m_OverrideState: 1
1165 | m_Value: 1
1166 | --- !u!114 &5181252855286590922
1167 | MonoBehaviour:
1168 | m_ObjectHideFlags: 3
1169 | m_CorrespondingSourceObject: {fileID: 0}
1170 | m_PrefabInstance: {fileID: 0}
1171 | m_PrefabAsset: {fileID: 0}
1172 | m_GameObject: {fileID: 0}
1173 | m_Enabled: 1
1174 | m_EditorHideFlags: 0
1175 | m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3}
1176 | m_Name: ColorAdjustments
1177 | m_EditorClassIdentifier:
1178 | active: 1
1179 | postExposure:
1180 | m_OverrideState: 1
1181 | m_Value: 0
1182 | contrast:
1183 | m_OverrideState: 1
1184 | m_Value: 0
1185 | colorFilter:
1186 | m_OverrideState: 1
1187 | m_Value: {r: 1, g: 1, b: 1, a: 1}
1188 | hueShift:
1189 | m_OverrideState: 1
1190 | m_Value: 0
1191 | saturation:
1192 | m_OverrideState: 1
1193 | m_Value: 0
1194 | --- !u!114 &5965119991234464846
1195 | MonoBehaviour:
1196 | m_ObjectHideFlags: 3
1197 | m_CorrespondingSourceObject: {fileID: 0}
1198 | m_PrefabInstance: {fileID: 0}
1199 | m_PrefabAsset: {fileID: 0}
1200 | m_GameObject: {fileID: 0}
1201 | m_Enabled: 1
1202 | m_EditorHideFlags: 0
1203 | m_Script: {fileID: 11500000, guid: c5e1dc532bcb41949b58bc4f2abfbb7e, type: 3}
1204 | m_Name: LensDistortion
1205 | m_EditorClassIdentifier:
1206 | active: 1
1207 | intensity:
1208 | m_OverrideState: 1
1209 | m_Value: 0
1210 | xMultiplier:
1211 | m_OverrideState: 1
1212 | m_Value: 1
1213 | yMultiplier:
1214 | m_OverrideState: 1
1215 | m_Value: 1
1216 | center:
1217 | m_OverrideState: 1
1218 | m_Value: {x: 0.5, y: 0.5}
1219 | scale:
1220 | m_OverrideState: 1
1221 | m_Value: 1
1222 | --- !u!114 &6785396267475173456
1223 | MonoBehaviour:
1224 | m_ObjectHideFlags: 3
1225 | m_CorrespondingSourceObject: {fileID: 0}
1226 | m_PrefabInstance: {fileID: 0}
1227 | m_PrefabAsset: {fileID: 0}
1228 | m_GameObject: {fileID: 0}
1229 | m_Enabled: 1
1230 | m_EditorHideFlags: 0
1231 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3}
1232 | m_Name: Tonemapping
1233 | m_EditorClassIdentifier:
1234 | active: 1
1235 | mode:
1236 | m_OverrideState: 1
1237 | m_Value: 0
1238 | neutralHDRRangeReductionMode:
1239 | m_OverrideState: 1
1240 | m_Value: 2
1241 | acesPreset:
1242 | m_OverrideState: 1
1243 | m_Value: 3
1244 | hueShiftAmount:
1245 | m_OverrideState: 1
1246 | m_Value: 0
1247 | detectPaperWhite:
1248 | m_OverrideState: 1
1249 | m_Value: 0
1250 | paperWhite:
1251 | m_OverrideState: 1
1252 | m_Value: 300
1253 | detectBrightnessLimits:
1254 | m_OverrideState: 1
1255 | m_Value: 1
1256 | minNits:
1257 | m_OverrideState: 1
1258 | m_Value: 0.005
1259 | maxNits:
1260 | m_OverrideState: 1
1261 | m_Value: 1000
1262 | --- !u!114 &6961554468726706765
1263 | MonoBehaviour:
1264 | m_ObjectHideFlags: 3
1265 | m_CorrespondingSourceObject: {fileID: 0}
1266 | m_PrefabInstance: {fileID: 0}
1267 | m_PrefabAsset: {fileID: 0}
1268 | m_GameObject: {fileID: 0}
1269 | m_Enabled: 1
1270 | m_EditorHideFlags: 0
1271 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3}
1272 | m_Name: Bloom
1273 | m_EditorClassIdentifier:
1274 | active: 1
1275 | skipIterations:
1276 | m_OverrideState: 1
1277 | m_Value: 1
1278 | threshold:
1279 | m_OverrideState: 1
1280 | m_Value: 0.9
1281 | intensity:
1282 | m_OverrideState: 1
1283 | m_Value: 0
1284 | scatter:
1285 | m_OverrideState: 1
1286 | m_Value: 0.7
1287 | clamp:
1288 | m_OverrideState: 1
1289 | m_Value: 65472
1290 | tint:
1291 | m_OverrideState: 1
1292 | m_Value: {r: 1, g: 1, b: 1, a: 1}
1293 | highQualityFiltering:
1294 | m_OverrideState: 1
1295 | m_Value: 0
1296 | downscale:
1297 | m_OverrideState: 1
1298 | m_Value: 0
1299 | maxIterations:
1300 | m_OverrideState: 1
1301 | m_Value: 6
1302 | dirtTexture:
1303 | m_OverrideState: 1
1304 | m_Value: {fileID: 0}
1305 | dimension: 1
1306 | dirtIntensity:
1307 | m_OverrideState: 1
1308 | m_Value: 0
1309 | --- !u!114 &7506086559484161833
1310 | MonoBehaviour:
1311 | m_ObjectHideFlags: 3
1312 | m_CorrespondingSourceObject: {fileID: 0}
1313 | m_PrefabInstance: {fileID: 0}
1314 | m_PrefabAsset: {fileID: 0}
1315 | m_GameObject: {fileID: 0}
1316 | m_Enabled: 1
1317 | m_EditorHideFlags: 0
1318 | m_Script: {fileID: 11500000, guid: 3eb4b772797da9440885e8bd939e9560, type: 3}
1319 | m_Name: ColorCurves
1320 | m_EditorClassIdentifier:
1321 | active: 1
1322 | master:
1323 | m_OverrideState: 1
1324 | m_Value:
1325 | k__BackingField: 2
1326 | m_Loop: 0
1327 | m_ZeroValue: 0
1328 | m_Range: 1
1329 | m_Curve:
1330 | serializedVersion: 2
1331 | m_Curve:
1332 | - serializedVersion: 3
1333 | time: 0
1334 | value: 0
1335 | inSlope: 1
1336 | outSlope: 1
1337 | tangentMode: 0
1338 | weightedMode: 0
1339 | inWeight: 0
1340 | outWeight: 0
1341 | - serializedVersion: 3
1342 | time: 1
1343 | value: 1
1344 | inSlope: 1
1345 | outSlope: 1
1346 | tangentMode: 0
1347 | weightedMode: 0
1348 | inWeight: 0
1349 | outWeight: 0
1350 | m_PreInfinity: 2
1351 | m_PostInfinity: 2
1352 | m_RotationOrder: 4
1353 | red:
1354 | m_OverrideState: 1
1355 | m_Value:
1356 | k__BackingField: 2
1357 | m_Loop: 0
1358 | m_ZeroValue: 0
1359 | m_Range: 1
1360 | m_Curve:
1361 | serializedVersion: 2
1362 | m_Curve:
1363 | - serializedVersion: 3
1364 | time: 0
1365 | value: 0
1366 | inSlope: 1
1367 | outSlope: 1
1368 | tangentMode: 0
1369 | weightedMode: 0
1370 | inWeight: 0
1371 | outWeight: 0
1372 | - serializedVersion: 3
1373 | time: 1
1374 | value: 1
1375 | inSlope: 1
1376 | outSlope: 1
1377 | tangentMode: 0
1378 | weightedMode: 0
1379 | inWeight: 0
1380 | outWeight: 0
1381 | m_PreInfinity: 2
1382 | m_PostInfinity: 2
1383 | m_RotationOrder: 4
1384 | green:
1385 | m_OverrideState: 1
1386 | m_Value:
1387 | k__BackingField: 2
1388 | m_Loop: 0
1389 | m_ZeroValue: 0
1390 | m_Range: 1
1391 | m_Curve:
1392 | serializedVersion: 2
1393 | m_Curve:
1394 | - serializedVersion: 3
1395 | time: 0
1396 | value: 0
1397 | inSlope: 1
1398 | outSlope: 1
1399 | tangentMode: 0
1400 | weightedMode: 0
1401 | inWeight: 0
1402 | outWeight: 0
1403 | - serializedVersion: 3
1404 | time: 1
1405 | value: 1
1406 | inSlope: 1
1407 | outSlope: 1
1408 | tangentMode: 0
1409 | weightedMode: 0
1410 | inWeight: 0
1411 | outWeight: 0
1412 | m_PreInfinity: 2
1413 | m_PostInfinity: 2
1414 | m_RotationOrder: 4
1415 | blue:
1416 | m_OverrideState: 1
1417 | m_Value:
1418 | k__BackingField: 2
1419 | m_Loop: 0
1420 | m_ZeroValue: 0
1421 | m_Range: 1
1422 | m_Curve:
1423 | serializedVersion: 2
1424 | m_Curve:
1425 | - serializedVersion: 3
1426 | time: 0
1427 | value: 0
1428 | inSlope: 1
1429 | outSlope: 1
1430 | tangentMode: 0
1431 | weightedMode: 0
1432 | inWeight: 0
1433 | outWeight: 0
1434 | - serializedVersion: 3
1435 | time: 1
1436 | value: 1
1437 | inSlope: 1
1438 | outSlope: 1
1439 | tangentMode: 0
1440 | weightedMode: 0
1441 | inWeight: 0
1442 | outWeight: 0
1443 | m_PreInfinity: 2
1444 | m_PostInfinity: 2
1445 | m_RotationOrder: 4
1446 | hueVsHue:
1447 | m_OverrideState: 1
1448 | m_Value:
1449 | k__BackingField: 0
1450 | m_Loop: 1
1451 | m_ZeroValue: 0.5
1452 | m_Range: 1
1453 | m_Curve:
1454 | serializedVersion: 2
1455 | m_Curve: []
1456 | m_PreInfinity: 2
1457 | m_PostInfinity: 2
1458 | m_RotationOrder: 4
1459 | hueVsSat:
1460 | m_OverrideState: 1
1461 | m_Value:
1462 | k__BackingField: 0
1463 | m_Loop: 1
1464 | m_ZeroValue: 0.5
1465 | m_Range: 1
1466 | m_Curve:
1467 | serializedVersion: 2
1468 | m_Curve: []
1469 | m_PreInfinity: 2
1470 | m_PostInfinity: 2
1471 | m_RotationOrder: 4
1472 | satVsSat:
1473 | m_OverrideState: 1
1474 | m_Value:
1475 | k__BackingField: 0
1476 | m_Loop: 0
1477 | m_ZeroValue: 0.5
1478 | m_Range: 1
1479 | m_Curve:
1480 | serializedVersion: 2
1481 | m_Curve: []
1482 | m_PreInfinity: 2
1483 | m_PostInfinity: 2
1484 | m_RotationOrder: 4
1485 | lumVsSat:
1486 | m_OverrideState: 1
1487 | m_Value:
1488 | k__BackingField: 0
1489 | m_Loop: 0
1490 | m_ZeroValue: 0.5
1491 | m_Range: 1
1492 | m_Curve:
1493 | serializedVersion: 2
1494 | m_Curve: []
1495 | m_PreInfinity: 2
1496 | m_PostInfinity: 2
1497 | m_RotationOrder: 4
1498 | --- !u!114 &7738787244961185184
1499 | MonoBehaviour:
1500 | m_ObjectHideFlags: 3
1501 | m_CorrespondingSourceObject: {fileID: 0}
1502 | m_PrefabInstance: {fileID: 0}
1503 | m_PrefabAsset: {fileID: 0}
1504 | m_GameObject: {fileID: 0}
1505 | m_Enabled: 1
1506 | m_EditorHideFlags: 0
1507 | m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3}
1508 | m_Name: ColorAdjustments
1509 | m_EditorClassIdentifier:
1510 | active: 1
1511 | postExposure:
1512 | m_OverrideState: 1
1513 | m_Value: 0
1514 | contrast:
1515 | m_OverrideState: 1
1516 | m_Value: 0
1517 | colorFilter:
1518 | m_OverrideState: 1
1519 | m_Value: {r: 1, g: 1, b: 1, a: 1}
1520 | hueShift:
1521 | m_OverrideState: 1
1522 | m_Value: 0
1523 | saturation:
1524 | m_OverrideState: 1
1525 | m_Value: 0
1526 | --- !u!114 &8385802884578569854
1527 | MonoBehaviour:
1528 | m_ObjectHideFlags: 3
1529 | m_CorrespondingSourceObject: {fileID: 0}
1530 | m_PrefabInstance: {fileID: 0}
1531 | m_PrefabAsset: {fileID: 0}
1532 | m_GameObject: {fileID: 0}
1533 | m_Enabled: 1
1534 | m_EditorHideFlags: 0
1535 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3}
1536 | m_Name: FilmGrain
1537 | m_EditorClassIdentifier:
1538 | active: 1
1539 | type:
1540 | m_OverrideState: 1
1541 | m_Value: 0
1542 | intensity:
1543 | m_OverrideState: 1
1544 | m_Value: 0
1545 | response:
1546 | m_OverrideState: 1
1547 | m_Value: 0.8
1548 | texture:
1549 | m_OverrideState: 1
1550 | m_Value: {fileID: 0}
1551 |
--------------------------------------------------------------------------------
/Assets/URP/DefaultSettings.asset.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: fcc34833ea47c4f31921886a5a6ab8ff
3 | NativeFormatImporter:
4 | externalObjects: {}
5 | mainObjectFileID: 11400000
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/URP/GlobalSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &11400000
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 0
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 11500000, guid: 2ec995e51a6e251468d2a3fd8a686257, type: 3}
13 | m_Name: GlobalSettings
14 | m_EditorClassIdentifier:
15 | m_ShaderStrippingSetting:
16 | m_Version: 0
17 | m_ExportShaderVariants: 1
18 | m_ShaderVariantLogLevel: 0
19 | m_StripRuntimeDebugShaders: 1
20 | m_URPShaderStrippingSetting:
21 | m_Version: 0
22 | m_StripUnusedPostProcessingVariants: 0
23 | m_StripUnusedVariants: 1
24 | m_StripScreenCoordOverrideVariants: 1
25 | m_ShaderVariantLogLevel: 0
26 | m_ExportShaderVariants: 1
27 | m_StripDebugVariants: 1
28 | m_StripUnusedPostProcessingVariants: 0
29 | m_StripUnusedVariants: 1
30 | m_StripScreenCoordOverrideVariants: 1
31 | supportRuntimeDebugDisplay: 0
32 | m_EnableRenderGraph: 0
33 | m_Settings:
34 | m_SettingsList:
35 | m_List:
36 | - rid: 2335232457552953344
37 | - rid: 2335232457552953345
38 | - rid: 2335232457552953346
39 | - rid: 2335232457552953347
40 | - rid: 2335232457552953348
41 | - rid: 2335232457552953349
42 | - rid: 2335232457552953350
43 | - rid: 2335232457552953351
44 | - rid: 2335232457552953352
45 | - rid: 2335232457552953353
46 | - rid: 2335232457552953354
47 | - rid: 2335232457552953355
48 | - rid: 2335232457552953356
49 | - rid: 2335232457552953357
50 | - rid: 2335232457552953358
51 | - rid: 2335232457552953359
52 | - rid: 2335232457552953360
53 | - rid: 2335232457552953361
54 | - rid: 2335232457552953362
55 | - rid: 1923536435163693056
56 | - rid: 3287904091975450624
57 | - rid: 7253885559936647168
58 | - rid: 2027214095638593536
59 | - rid: 2027214095638593537
60 | - rid: 2027214095638593538
61 | - rid: 2027214095638593539
62 | m_RuntimeSettings:
63 | m_List: []
64 | m_AssetVersion: 8
65 | m_ObsoleteDefaultVolumeProfile: {fileID: 0}
66 | m_RenderingLayerNames:
67 | - Default
68 | m_ValidRenderingLayers: 1
69 | lightLayerName0:
70 | lightLayerName1:
71 | lightLayerName2:
72 | lightLayerName3:
73 | lightLayerName4:
74 | lightLayerName5:
75 | lightLayerName6:
76 | lightLayerName7:
77 | apvScenesData:
78 | obsoleteSceneBounds:
79 | m_Keys: []
80 | m_Values: []
81 | obsoleteHasProbeVolumes:
82 | m_Keys: []
83 | m_Values:
84 | references:
85 | version: 2
86 | RefIds:
87 | - rid: 1923536435163693056
88 | type: {class: RenderGraphUtilsResources, ns: UnityEngine.Rendering.RenderGraphModule.Util, asm: Unity.RenderPipelines.Core.Runtime}
89 | data:
90 | m_Version: 0
91 | m_CoreCopyPS: {fileID: 4800000, guid: 12dc59547ea167a4ab435097dd0f9add, type: 3}
92 | - rid: 2027214095638593536
93 | type: {class: PostProcessData/ShaderResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
94 | data:
95 | stopNanPS: {fileID: 4800000, guid: 1121bb4e615ca3c48b214e79e841e823, type: 3}
96 | subpixelMorphologicalAntialiasingPS: {fileID: 4800000, guid: 63eaba0ebfb82cc43bde059b4a8c65f6, type: 3}
97 | gaussianDepthOfFieldPS: {fileID: 4800000, guid: 5e7134d6e63e0bc47a1dd2669cedb379, type: 3}
98 | bokehDepthOfFieldPS: {fileID: 4800000, guid: 2aed67ad60045d54ba3a00c91e2d2631, type: 3}
99 | cameraMotionBlurPS: {fileID: 4800000, guid: 1edcd131364091c46a17cbff0b1de97a, type: 3}
100 | paniniProjectionPS: {fileID: 4800000, guid: a15b78cf8ca26ca4fb2090293153c62c, type: 3}
101 | lutBuilderLdrPS: {fileID: 4800000, guid: 65df88701913c224d95fc554db28381a, type: 3}
102 | lutBuilderHdrPS: {fileID: 4800000, guid: ec9fec698a3456d4fb18cf8bacb7a2bc, type: 3}
103 | bloomPS: {fileID: 4800000, guid: 5f1864addb451f54bae8c86d230f736e, type: 3}
104 | temporalAntialiasingPS: {fileID: 4800000, guid: 9c70c1a35ff15f340b38ea84842358bf, type: 3}
105 | LensFlareDataDrivenPS: {fileID: 4800000, guid: 6cda457ac28612740adb23da5d39ea92, type: 3}
106 | LensFlareScreenSpacePS: {fileID: 4800000, guid: 701880fecb344ea4c9cd0db3407ab287, type: 3}
107 | scalingSetupPS: {fileID: 4800000, guid: e8ee25143a34b8c4388709ea947055d1, type: 3}
108 | easuPS: {fileID: 4800000, guid: 562b7ae4f629f144aa97780546fce7c6, type: 3}
109 | uberPostPS: {fileID: 4800000, guid: e7857e9d0c934dc4f83f270f8447b006, type: 3}
110 | finalPostPassPS: {fileID: 4800000, guid: c49e63ed1bbcb334780a3bd19dfed403, type: 3}
111 | m_ShaderResourcesVersion: 0
112 | - rid: 2027214095638593537
113 | type: {class: ScreenSpaceAmbientOcclusionDynamicResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
114 | data:
115 | m_BlueNoise256Textures:
116 | - {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3}
117 | - {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3}
118 | - {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3}
119 | - {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3}
120 | - {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3}
121 | - {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3}
122 | - {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3}
123 | m_Version: 0
124 | - rid: 2027214095638593538
125 | type: {class: ScreenSpaceAmbientOcclusionPersistentResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
126 | data:
127 | m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3}
128 | m_Version: 0
129 | - rid: 2027214095638593539
130 | type: {class: PostProcessData/TextureResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
131 | data:
132 | blueNoise16LTex:
133 | - {fileID: 2800000, guid: 81200413a40918d4d8702e94db29911c, type: 3}
134 | - {fileID: 2800000, guid: d50c5e07c9911a74982bddf7f3075e7b, type: 3}
135 | - {fileID: 2800000, guid: 1134690bf9216164dbc75050e35b7900, type: 3}
136 | - {fileID: 2800000, guid: 7ce2118f74614a94aa8a0cdf2e6062c3, type: 3}
137 | - {fileID: 2800000, guid: 2ca97df9d1801e84a8a8f2c53cb744f0, type: 3}
138 | - {fileID: 2800000, guid: e63eef8f54aa9dc4da9a5ac094b503b5, type: 3}
139 | - {fileID: 2800000, guid: 39451254daebd6d40b52899c1f1c0c1b, type: 3}
140 | - {fileID: 2800000, guid: c94ad916058dff743b0f1c969ddbe660, type: 3}
141 | - {fileID: 2800000, guid: ed5ea7ce59ca8ec4f9f14bf470a30f35, type: 3}
142 | - {fileID: 2800000, guid: 071e954febf155243a6c81e48f452644, type: 3}
143 | - {fileID: 2800000, guid: 96aaab9cc247d0b4c98132159688c1af, type: 3}
144 | - {fileID: 2800000, guid: fc3fa8f108657e14486697c9a84ccfc5, type: 3}
145 | - {fileID: 2800000, guid: bfed3e498947fcb4890b7f40f54d85b9, type: 3}
146 | - {fileID: 2800000, guid: d512512f4af60a442ab3458489412954, type: 3}
147 | - {fileID: 2800000, guid: 47a45908f6db0cb44a0d5e961143afec, type: 3}
148 | - {fileID: 2800000, guid: 4dcc0502f8586f941b5c4a66717205e8, type: 3}
149 | - {fileID: 2800000, guid: 9d92991794bb5864c8085468b97aa067, type: 3}
150 | - {fileID: 2800000, guid: 14381521ff11cb74abe3fe65401c23be, type: 3}
151 | - {fileID: 2800000, guid: d36f0fe53425e08499a2333cf423634c, type: 3}
152 | - {fileID: 2800000, guid: d4044ea2490d63b43aa1765f8efbf8a9, type: 3}
153 | - {fileID: 2800000, guid: c9bd74624d8070f429e3f46d161f9204, type: 3}
154 | - {fileID: 2800000, guid: d5c9b274310e5524ebe32a4e4da3df1f, type: 3}
155 | - {fileID: 2800000, guid: f69770e54f2823f43badf77916acad83, type: 3}
156 | - {fileID: 2800000, guid: 10b6c6d22e73dea46a8ab36b6eebd629, type: 3}
157 | - {fileID: 2800000, guid: a2ec5cbf5a9b64345ad3fab0912ddf7b, type: 3}
158 | - {fileID: 2800000, guid: 1c3c6d69a645b804fa232004b96b7ad3, type: 3}
159 | - {fileID: 2800000, guid: d18a24d7b4ed50f4387993566d9d3ae2, type: 3}
160 | - {fileID: 2800000, guid: c989e1ed85cf7154caa922fec53e6af6, type: 3}
161 | - {fileID: 2800000, guid: ff47e5a0f105eb34883b973e51f4db62, type: 3}
162 | - {fileID: 2800000, guid: fa042edbfc40fbd4bad0ab9d505b1223, type: 3}
163 | - {fileID: 2800000, guid: 896d9004736809c4fb5973b7c12eb8b9, type: 3}
164 | - {fileID: 2800000, guid: 179f794063d2a66478e6e726f84a65bc, type: 3}
165 | filmGrainTex:
166 | - {fileID: 2800000, guid: 654c582f7f8a5a14dbd7d119cbde215d, type: 3}
167 | - {fileID: 2800000, guid: dd77ffd079630404e879388999033049, type: 3}
168 | - {fileID: 2800000, guid: 1097e90e1306e26439701489f391a6c0, type: 3}
169 | - {fileID: 2800000, guid: f0b67500f7fad3b4c9f2b13e8f41ba6e, type: 3}
170 | - {fileID: 2800000, guid: 9930fb4528622b34687b00bbe6883de7, type: 3}
171 | - {fileID: 2800000, guid: bd9e8c758250ef449a4b4bfaad7a2133, type: 3}
172 | - {fileID: 2800000, guid: 510a2f57334933e4a8dbabe4c30204e4, type: 3}
173 | - {fileID: 2800000, guid: b4db8180660810945bf8d55ab44352ad, type: 3}
174 | - {fileID: 2800000, guid: fd2fd78b392986e42a12df2177d3b89c, type: 3}
175 | - {fileID: 2800000, guid: 5cdee82a77d13994f83b8fdabed7c301, type: 3}
176 | smaaAreaTex: {fileID: 2800000, guid: d1f1048909d55cd4fa1126ab998f617e, type: 3}
177 | smaaSearchTex: {fileID: 2800000, guid: 51eee22c2a633ef4aada830eed57c3fd, type: 3}
178 | m_TexturesResourcesVersion: 0
179 | - rid: 2335232457552953344
180 | type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
181 | data:
182 | m_Version: 0
183 | m_StripUnusedPostProcessingVariants: 0
184 | m_StripUnusedVariants: 1
185 | m_StripScreenCoordOverrideVariants: 1
186 | - rid: 2335232457552953345
187 | type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
188 | data:
189 | m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3}
190 | m_AutodeskInteractiveTransparent: {fileID: 4800000, guid: 5c81372d981403744adbdda4433c9c11, type: 3}
191 | m_AutodeskInteractiveMasked: {fileID: 4800000, guid: 80aa867ac363ac043847b06ad71604cd, type: 3}
192 | m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3}
193 | m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3}
194 | m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3}
195 | m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3}
196 | m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3}
197 | m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3}
198 | - rid: 2335232457552953346
199 | type: {class: UniversalRendererResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
200 | data:
201 | m_Version: 0
202 | m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3}
203 | m_CameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3}
204 | m_StencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3}
205 | m_DBufferClear: {fileID: 4800000, guid: f056d8bd2a1c7e44e9729144b4c70395, type: 3}
206 | - rid: 2335232457552953347
207 | type: {class: UniversalRenderPipelineDebugShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
208 | data:
209 | m_DebugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3}
210 | m_HdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
211 | m_ProbeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3}
212 | - rid: 2335232457552953348
213 | type: {class: UniversalRenderPipelineRuntimeShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
214 | data:
215 | m_Version: 0
216 | m_FallbackErrorShader: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3}
217 | m_BlitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3}
218 | m_CoreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3}
219 | m_CoreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3}
220 | m_SamplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3}
221 | m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3}
222 | m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3}
223 | m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3}
224 | - rid: 2335232457552953349
225 | type: {class: UniversalRenderPipelineRuntimeTextures, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
226 | data:
227 | m_Version: 1
228 | m_BlueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3}
229 | m_BayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3}
230 | m_DebugFontTex: {fileID: 2800000, guid: 26a413214480ef144b2915d6ff4d0beb, type: 3}
231 | - rid: 2335232457552953350
232 | type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
233 | data:
234 | m_Version: 0
235 | m_LightShader: {fileID: 4800000, guid: 3f6c848ca3d7bca4bbe846546ac701a1, type: 3}
236 | m_ProjectedShadowShader: {fileID: 4800000, guid: ce09d4a80b88c5a4eb9768fab4f1ee00, type: 3}
237 | m_SpriteShadowShader: {fileID: 4800000, guid: 44fc62292b65ab04eabcf310e799ccf6, type: 3}
238 | m_SpriteUnshadowShader: {fileID: 4800000, guid: de02b375720b5c445afe83cd483bedf3, type: 3}
239 | m_GeometryShadowShader: {fileID: 4800000, guid: 19349a0f9a7ed4c48a27445bcf92e5e1, type: 3}
240 | m_GeometryUnshadowShader: {fileID: 4800000, guid: 77774d9009bb81447b048c907d4c6273, type: 3}
241 | m_FallOffLookup: {fileID: 2800000, guid: 5688ab254e4c0634f8d6c8e0792331ca, type: 3}
242 | m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3}
243 | m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2}
244 | m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2}
245 | m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2}
246 | - rid: 2335232457552953351
247 | type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
248 | data:
249 | m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
250 | m_DefaultParticleMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2}
251 | m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2}
252 | m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2}
253 | m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2}
254 | m_DefaultSpriteMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2}
255 | - rid: 2335232457552953352
256 | type: {class: URPDefaultVolumeProfileSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
257 | data:
258 | m_Version: 0
259 | m_VolumeProfile: {fileID: 11400000, guid: fcc34833ea47c4f31921886a5a6ab8ff, type: 2}
260 | - rid: 2335232457552953353
261 | type: {class: RenderGraphSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
262 | data:
263 | m_Version: 0
264 | m_EnableRenderCompatibilityMode: 0
265 | - rid: 2335232457552953354
266 | type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime}
267 | data:
268 | m_Version: 0
269 | m_InstanceDataBufferCopyKernels: {fileID: 7200000, guid: f984aeb540ded8b4fbb8a2047ab5b2e2, type: 3}
270 | m_InstanceDataBufferUploadKernels: {fileID: 7200000, guid: 53864816eb00f2343b60e1a2c5a262ef, type: 3}
271 | m_TransformUpdaterKernels: {fileID: 7200000, guid: 2a567b9b2733f8d47a700c3c85bed75b, type: 3}
272 | m_WindDataUpdaterKernels: {fileID: 7200000, guid: fde76746e4fd0ed418c224f6b4084114, type: 3}
273 | m_OccluderDepthPyramidKernels: {fileID: 7200000, guid: 08b2b5fb307b0d249860612774a987da, type: 3}
274 | m_InstanceOcclusionCullingKernels: {fileID: 7200000, guid: f6d223acabc2f974795a5a7864b50e6c, type: 3}
275 | m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3}
276 | m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3}
277 | m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3}
278 | - rid: 2335232457552953355
279 | type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
280 | data:
281 | m_Version: 1
282 | dilationShader: {fileID: 7200000, guid: 6bb382f7de370af41b775f54182e491d, type: 3}
283 | subdivideSceneCS: {fileID: 7200000, guid: bb86f1f0af829fd45b2ebddda1245c22, type: 3}
284 | voxelizeSceneShader: {fileID: 4800000, guid: c8b6a681c7b4e2e4785ffab093907f9e, type: 3}
285 | traceVirtualOffsetCS: {fileID: -6772857160820960102, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3}
286 | traceVirtualOffsetRT: {fileID: -5126288278712620388, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3}
287 | skyOcclusionCS: {fileID: -6772857160820960102, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3}
288 | skyOcclusionRT: {fileID: -5126288278712620388, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3}
289 | renderingLayerCS: {fileID: -6772857160820960102, guid: 94a070d33e408384bafc1dea4a565df9, type: 3}
290 | renderingLayerRT: {fileID: -5126288278712620388, guid: 94a070d33e408384bafc1dea4a565df9, type: 3}
291 | - rid: 2335232457552953356
292 | type: {class: RenderGraphGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
293 | data:
294 | m_version: 0
295 | m_EnableCompilationCaching: 1
296 | m_EnableValidityChecks: 1
297 | - rid: 2335232457552953357
298 | type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
299 | data:
300 | m_Version: 1
301 | m_ProbeVolumeDisableStreamingAssets: 0
302 | - rid: 2335232457552953358
303 | type: {class: STP/RuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
304 | data:
305 | m_setupCS: {fileID: 7200000, guid: 33be2e9a5506b2843bdb2bdff9cad5e1, type: 3}
306 | m_preTaaCS: {fileID: 7200000, guid: a679dba8ec4d9ce45884a270b0e22dda, type: 3}
307 | m_taaCS: {fileID: 7200000, guid: 3923900e2b41b5e47bc25bfdcbcdc9e6, type: 3}
308 | - rid: 2335232457552953359
309 | type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
310 | data:
311 | m_Version: 1
312 | probeVolumeDebugShader: {fileID: 4800000, guid: 3b21275fd12d65f49babb5286f040f2d, type: 3}
313 | probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 3a80877c579b9144ebdcc6d923bca303, type: 3}
314 | probeVolumeSamplingDebugShader: {fileID: 4800000, guid: bf54e6528c79a224e96346799064c393, type: 3}
315 | probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3}
316 | probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3}
317 | numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3}
318 | - rid: 2335232457552953360
319 | type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
320 | data:
321 | m_version: 0
322 | m_IncludeReferencedInScenes: 0
323 | m_IncludeAssetsByLabel: 0
324 | m_LabelToInclude:
325 | - rid: 2335232457552953361
326 | type: {class: ShaderStrippingSetting, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
327 | data:
328 | m_Version: 0
329 | m_ExportShaderVariants: 1
330 | m_ShaderVariantLogLevel: 0
331 | m_StripRuntimeDebugShaders: 1
332 | - rid: 2335232457552953362
333 | type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
334 | data:
335 | m_Version: 1
336 | probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3}
337 | probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3}
338 | probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3}
339 | - rid: 3287904091975450624
340 | type: {class: UniversalRenderPipelineRuntimeXRResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
341 | data:
342 | m_xrOcclusionMeshPS: {fileID: 4800000, guid: 4431b1f1f743fbf4eb310a967890cbea, type: 3}
343 | m_xrMirrorViewPS: {fileID: 4800000, guid: d5a307c014552314b9f560906d708772, type: 3}
344 | m_xrMotionVector: {fileID: 4800000, guid: f89aac1e4f84468418fe30e611dff395, type: 3}
345 | - rid: 7253885559936647168
346 | type: {class: UniversalRenderPipelineEditorAssets, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
347 | data:
348 | m_DefaultSettingsVolumeProfile: {fileID: 11400000, guid: eda47df5b85f4f249abf7abd73db2cb2, type: 2}
349 |
--------------------------------------------------------------------------------
/Assets/URP/GlobalSettings.asset.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 27a43ffdced204282b6a42ae51c4b451
3 | NativeFormatImporter:
4 | externalObjects: {}
5 | mainObjectFileID: 11400000
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Assets/URP/URP.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &11400000
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 0
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3}
13 | m_Name: URP
14 | m_EditorClassIdentifier:
15 | k_AssetVersion: 12
16 | k_AssetPreviousVersion: 12
17 | m_RendererType: 1
18 | m_RendererData: {fileID: 0}
19 | m_RendererDataList:
20 | - {fileID: 11400000, guid: 8e1183055e54048bbb725e5812e38d2a, type: 2}
21 | m_DefaultRendererIndex: 0
22 | m_RequireDepthTexture: 0
23 | m_RequireOpaqueTexture: 0
24 | m_OpaqueDownsampling: 1
25 | m_SupportsTerrainHoles: 1
26 | m_SupportsHDR: 1
27 | m_HDRColorBufferPrecision: 0
28 | m_MSAA: 1
29 | m_RenderScale: 1
30 | m_UpscalingFilter: 0
31 | m_FsrOverrideSharpness: 0
32 | m_FsrSharpness: 0.92
33 | m_EnableLODCrossFade: 1
34 | m_LODCrossFadeDitheringType: 1
35 | m_ShEvalMode: 0
36 | m_LightProbeSystem: 0
37 | m_ProbeVolumeMemoryBudget: 1024
38 | m_ProbeVolumeBlendingMemoryBudget: 256
39 | m_SupportProbeVolumeGPUStreaming: 0
40 | m_SupportProbeVolumeDiskStreaming: 0
41 | m_SupportProbeVolumeScenarios: 0
42 | m_SupportProbeVolumeScenarioBlending: 0
43 | m_ProbeVolumeSHBands: 1
44 | m_MainLightRenderingMode: 1
45 | m_MainLightShadowsSupported: 1
46 | m_MainLightShadowmapResolution: 2048
47 | m_AdditionalLightsRenderingMode: 1
48 | m_AdditionalLightsPerObjectLimit: 4
49 | m_AdditionalLightShadowsSupported: 1
50 | m_AdditionalLightsShadowmapResolution: 2048
51 | m_AdditionalLightsShadowResolutionTierLow: 256
52 | m_AdditionalLightsShadowResolutionTierMedium: 512
53 | m_AdditionalLightsShadowResolutionTierHigh: 1024
54 | m_ReflectionProbeBlending: 0
55 | m_ReflectionProbeBoxProjection: 0
56 | m_ShadowDistance: 20
57 | m_ShadowCascadeCount: 1
58 | m_Cascade2Split: 0.25
59 | m_Cascade3Split: {x: 0.1, y: 0.3}
60 | m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467}
61 | m_CascadeBorder: 0.2
62 | m_ShadowDepthBias: 0.1
63 | m_ShadowNormalBias: 0.1
64 | m_AnyShadowsSupported: 1
65 | m_SoftShadowsSupported: 1
66 | m_ConservativeEnclosingSphere: 1
67 | m_NumIterationsEnclosingSphere: 64
68 | m_SoftShadowQuality: 2
69 | m_AdditionalLightsCookieResolution: 2048
70 | m_AdditionalLightsCookieFormat: 3
71 | m_UseSRPBatcher: 1
72 | m_SupportsDynamicBatching: 0
73 | m_MixedLightingSupported: 1
74 | m_SupportsLightCookies: 1
75 | m_SupportsLightLayers: 0
76 | m_DebugLevel: 0
77 | m_StoreActionsOptimization: 0
78 | m_UseAdaptivePerformance: 1
79 | m_ColorGradingMode: 0
80 | m_ColorGradingLutSize: 32
81 | m_AllowPostProcessAlphaOutput: 0
82 | m_UseFastSRGBLinearConversion: 0
83 | m_SupportDataDrivenLensFlare: 1
84 | m_SupportScreenSpaceLensFlare: 1
85 | m_GPUResidentDrawerMode: 0
86 | m_SmallMeshScreenPercentage: 0
87 | m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0
88 | m_ShadowType: 1
89 | m_LocalShadowsSupported: 0
90 | m_LocalShadowsAtlasResolution: 256
91 | m_MaxPixelLights: 0
92 | m_ShadowAtlasResolution: 256
93 | m_VolumeFrameworkUpdateMode: 0
94 | m_VolumeProfile: {fileID: 0}
95 | apvScenesData:
96 | obsoleteSceneBounds:
97 | m_Keys: []
98 | m_Values: []
99 | obsoleteHasProbeVolumes:
100 | m_Keys: []
101 | m_Values:
102 | m_PrefilteringModeMainLightShadows: 3
103 | m_PrefilteringModeAdditionalLight: 3
104 | m_PrefilteringModeAdditionalLightShadows: 2
105 | m_PrefilterXRKeywords: 1
106 | m_PrefilteringModeForwardPlus: 0
107 | m_PrefilteringModeDeferredRendering: 0
108 | m_PrefilteringModeScreenSpaceOcclusion: 0
109 | m_PrefilterDebugKeywords: 1
110 | m_PrefilterWriteRenderingLayers: 1
111 | m_PrefilterHDROutput: 1
112 | m_PrefilterAlphaOutput: 1
113 | m_PrefilterSSAODepthNormals: 1
114 | m_PrefilterSSAOSourceDepthLow: 1
115 | m_PrefilterSSAOSourceDepthMedium: 1
116 | m_PrefilterSSAOSourceDepthHigh: 1
117 | m_PrefilterSSAOInterleaved: 1
118 | m_PrefilterSSAOBlueNoise: 1
119 | m_PrefilterSSAOSampleCountLow: 1
120 | m_PrefilterSSAOSampleCountMedium: 1
121 | m_PrefilterSSAOSampleCountHigh: 1
122 | m_PrefilterDBufferMRT1: 1
123 | m_PrefilterDBufferMRT2: 1
124 | m_PrefilterDBufferMRT3: 1
125 | m_PrefilterSoftShadowsQualityLow: 1
126 | m_PrefilterSoftShadowsQualityMedium: 1
127 | m_PrefilterSoftShadowsQualityHigh: 1
128 | m_PrefilterSoftShadows: 0
129 | m_PrefilterScreenCoord: 1
130 | m_PrefilterNativeRenderPass: 1
131 | m_PrefilterUseLegacyLightmaps: 0
132 | m_ShaderVariantLogLevel: 0
133 | m_ShadowCascades: 0
134 | m_Textures:
135 | blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3}
136 | bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3}
137 |
--------------------------------------------------------------------------------
/Assets/URP/URP.asset.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 20b57e50be50f4cf3bb2306d63c8e0e7
3 | NativeFormatImporter:
4 | externalObjects: {}
5 | mainObjectFileID: 11400000
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: e0cf264ecd6bc4beaa1ce35f4755c080
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: a736c09837c294eeeaf393b9bf98fb00
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 6a1e1810ee31a469ca8c65d9a40fae71
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright 2006 The Inconsolata Project Authors
2 |
3 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 | This license is copied below, and is also available with a FAQ at:
5 | https://openfontlicense.org
6 |
7 |
8 | -----------------------------------------------------------
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | -----------------------------------------------------------
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide
14 | development of collaborative font projects, to support the font creation
15 | efforts of academic and linguistic communities, and to provide a free and
16 | open framework in which fonts may be shared and improved in partnership
17 | with others.
18 |
19 | The OFL allows the licensed fonts to be used, studied, modified and
20 | redistributed freely as long as they are not sold by themselves. The
21 | fonts, including any derivative works, can be bundled, embedded,
22 | redistributed and/or sold with any software provided that any reserved
23 | names are not used by derivative works. The fonts and derivatives,
24 | however, cannot be released under any other type of license. The
25 | requirement for fonts to remain under this license does not apply
26 | to any document created using the fonts or their derivatives.
27 |
28 | DEFINITIONS
29 | "Font Software" refers to the set of files released by the Copyright
30 | Holder(s) under this license and clearly marked as such. This may
31 | include source files, build scripts and documentation.
32 |
33 | "Reserved Font Name" refers to any names specified as such after the
34 | copyright statement(s).
35 |
36 | "Original Version" refers to the collection of Font Software components as
37 | distributed by the Copyright Holder(s).
38 |
39 | "Modified Version" refers to any derivative made by adding to, deleting,
40 | or substituting -- in part or in whole -- any of the components of the
41 | Original Version, by changing formats or by porting the Font Software to a
42 | new environment.
43 |
44 | "Author" refers to any designer, engineer, programmer, technical
45 | writer or other person who contributed to the Font Software.
46 |
47 | PERMISSION & CONDITIONS
48 | Permission is hereby granted, free of charge, to any person obtaining
49 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 | redistribute, and sell modified and unmodified copies of the Font
51 | Software, subject to the following conditions:
52 |
53 | 1) Neither the Font Software nor any of its individual components,
54 | in Original or Modified Versions, may be sold by itself.
55 |
56 | 2) Original or Modified Versions of the Font Software may be bundled,
57 | redistributed and/or sold with any software, provided that each copy
58 | contains the above copyright notice and this license. These can be
59 | included either as stand-alone text files, human-readable headers or
60 | in the appropriate machine-readable metadata fields within text or
61 | binary files as long as those fields can be easily viewed by the user.
62 |
63 | 3) No Modified Version of the Font Software may use the Reserved Font
64 | Name(s) unless explicit written permission is granted by the corresponding
65 | Copyright Holder. This restriction only applies to the primary font name as
66 | presented to the users.
67 |
68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 | Software shall not be used to promote, endorse or advertise any
70 | Modified Version, except to acknowledge the contribution(s) of the
71 | Copyright Holder(s) and the Author(s) or with their explicit written
72 | permission.
73 |
74 | 5) The Font Software, modified or unmodified, in part or in whole,
75 | must be distributed entirely under this license, and must not be
76 | distributed under any other license. The requirement for fonts to
77 | remain under this license does not apply to any document created
78 | using the Font Software.
79 |
80 | TERMINATION
81 | This license becomes null and void if any of the above conditions are
82 | not met.
83 |
84 | DISCLAIMER
85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 | OTHER DEALINGS IN THE FONT SOFTWARE.
94 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/OFL.txt.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: bf7f1f7f11234450d900b600f5c76585
3 | TextScriptImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/README.txt:
--------------------------------------------------------------------------------
1 | Inconsolata Variable Font
2 | =========================
3 |
4 | This download contains Inconsolata as both a variable font and static fonts.
5 |
6 | Inconsolata is a variable font with these axes:
7 | wdth
8 | wght
9 |
10 | This means all the styles are contained in a single file:
11 | Inconsolata/Inconsolata-VariableFont_wdth,wght.ttf
12 |
13 | If your app fully supports variable fonts, you can now pick intermediate styles
14 | that aren’t available as static fonts. Not all apps support variable fonts, and
15 | in those cases you can use the static font files for Inconsolata:
16 | Inconsolata/static/Inconsolata_UltraCondensed-ExtraLight.ttf
17 | Inconsolata/static/Inconsolata_UltraCondensed-Light.ttf
18 | Inconsolata/static/Inconsolata_UltraCondensed-Regular.ttf
19 | Inconsolata/static/Inconsolata_UltraCondensed-Medium.ttf
20 | Inconsolata/static/Inconsolata_UltraCondensed-SemiBold.ttf
21 | Inconsolata/static/Inconsolata_UltraCondensed-Bold.ttf
22 | Inconsolata/static/Inconsolata_UltraCondensed-ExtraBold.ttf
23 | Inconsolata/static/Inconsolata_UltraCondensed-Black.ttf
24 | Inconsolata/static/Inconsolata_ExtraCondensed-ExtraLight.ttf
25 | Inconsolata/static/Inconsolata_ExtraCondensed-Light.ttf
26 | Inconsolata/static/Inconsolata_ExtraCondensed-Regular.ttf
27 | Inconsolata/static/Inconsolata_ExtraCondensed-Medium.ttf
28 | Inconsolata/static/Inconsolata_ExtraCondensed-SemiBold.ttf
29 | Inconsolata/static/Inconsolata_ExtraCondensed-Bold.ttf
30 | Inconsolata/static/Inconsolata_ExtraCondensed-ExtraBold.ttf
31 | Inconsolata/static/Inconsolata_ExtraCondensed-Black.ttf
32 | Inconsolata/static/Inconsolata_Condensed-ExtraLight.ttf
33 | Inconsolata/static/Inconsolata_Condensed-Light.ttf
34 | Inconsolata/static/Inconsolata_Condensed-Regular.ttf
35 | Inconsolata/static/Inconsolata_Condensed-Medium.ttf
36 | Inconsolata/static/Inconsolata_Condensed-SemiBold.ttf
37 | Inconsolata/static/Inconsolata_Condensed-Bold.ttf
38 | Inconsolata/static/Inconsolata_Condensed-ExtraBold.ttf
39 | Inconsolata/static/Inconsolata_Condensed-Black.ttf
40 | Inconsolata/static/Inconsolata_SemiCondensed-ExtraLight.ttf
41 | Inconsolata/static/Inconsolata_SemiCondensed-Light.ttf
42 | Inconsolata/static/Inconsolata_SemiCondensed-Regular.ttf
43 | Inconsolata/static/Inconsolata_SemiCondensed-Medium.ttf
44 | Inconsolata/static/Inconsolata_SemiCondensed-SemiBold.ttf
45 | Inconsolata/static/Inconsolata_SemiCondensed-Bold.ttf
46 | Inconsolata/static/Inconsolata_SemiCondensed-ExtraBold.ttf
47 | Inconsolata/static/Inconsolata_SemiCondensed-Black.ttf
48 | Inconsolata/static/Inconsolata-ExtraLight.ttf
49 | Inconsolata/static/Inconsolata-Light.ttf
50 | Inconsolata/static/Inconsolata-Regular.ttf
51 | Inconsolata/static/Inconsolata-Medium.ttf
52 | Inconsolata/static/Inconsolata-SemiBold.ttf
53 | Inconsolata/static/Inconsolata-Bold.ttf
54 | Inconsolata/static/Inconsolata-ExtraBold.ttf
55 | Inconsolata/static/Inconsolata-Black.ttf
56 | Inconsolata/static/Inconsolata_SemiExpanded-ExtraLight.ttf
57 | Inconsolata/static/Inconsolata_SemiExpanded-Light.ttf
58 | Inconsolata/static/Inconsolata_SemiExpanded-Regular.ttf
59 | Inconsolata/static/Inconsolata_SemiExpanded-Medium.ttf
60 | Inconsolata/static/Inconsolata_SemiExpanded-SemiBold.ttf
61 | Inconsolata/static/Inconsolata_SemiExpanded-Bold.ttf
62 | Inconsolata/static/Inconsolata_SemiExpanded-ExtraBold.ttf
63 | Inconsolata/static/Inconsolata_SemiExpanded-Black.ttf
64 | Inconsolata/static/Inconsolata_Expanded-ExtraLight.ttf
65 | Inconsolata/static/Inconsolata_Expanded-Light.ttf
66 | Inconsolata/static/Inconsolata_Expanded-Regular.ttf
67 | Inconsolata/static/Inconsolata_Expanded-Medium.ttf
68 | Inconsolata/static/Inconsolata_Expanded-SemiBold.ttf
69 | Inconsolata/static/Inconsolata_Expanded-Bold.ttf
70 | Inconsolata/static/Inconsolata_Expanded-ExtraBold.ttf
71 | Inconsolata/static/Inconsolata_Expanded-Black.ttf
72 | Inconsolata/static/Inconsolata_ExtraExpanded-ExtraLight.ttf
73 | Inconsolata/static/Inconsolata_ExtraExpanded-Light.ttf
74 | Inconsolata/static/Inconsolata_ExtraExpanded-Regular.ttf
75 | Inconsolata/static/Inconsolata_ExtraExpanded-Medium.ttf
76 | Inconsolata/static/Inconsolata_ExtraExpanded-SemiBold.ttf
77 | Inconsolata/static/Inconsolata_ExtraExpanded-Bold.ttf
78 | Inconsolata/static/Inconsolata_ExtraExpanded-ExtraBold.ttf
79 | Inconsolata/static/Inconsolata_ExtraExpanded-Black.ttf
80 | Inconsolata/static/Inconsolata_UltraExpanded-ExtraLight.ttf
81 | Inconsolata/static/Inconsolata_UltraExpanded-Light.ttf
82 | Inconsolata/static/Inconsolata_UltraExpanded-Regular.ttf
83 | Inconsolata/static/Inconsolata_UltraExpanded-Medium.ttf
84 | Inconsolata/static/Inconsolata_UltraExpanded-SemiBold.ttf
85 | Inconsolata/static/Inconsolata_UltraExpanded-Bold.ttf
86 | Inconsolata/static/Inconsolata_UltraExpanded-ExtraBold.ttf
87 | Inconsolata/static/Inconsolata_UltraExpanded-Black.ttf
88 |
89 | Get started
90 | -----------
91 |
92 | 1. Install the font files you want to use
93 |
94 | 2. Use your app's font picker to view the font family and all the
95 | available styles
96 |
97 | Learn more about variable fonts
98 | -------------------------------
99 |
100 | https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
101 | https://variablefonts.typenetwork.com
102 | https://medium.com/variable-fonts
103 |
104 | In desktop apps
105 |
106 | https://theblog.adobe.com/can-variable-fonts-illustrator-cc
107 | https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
108 |
109 | Online
110 |
111 | https://developers.google.com/fonts/docs/getting_started
112 | https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
113 | https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
114 |
115 | Installing fonts
116 |
117 | MacOS: https://support.apple.com/en-us/HT201749
118 | Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
119 | Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
120 |
121 | Android Apps
122 |
123 | https://developers.google.com/fonts/docs/android
124 | https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
125 |
126 | License
127 | -------
128 | Please read the full license text (OFL.txt) to understand the permissions,
129 | restrictions and requirements for usage, redistribution, and modification.
130 |
131 | You can use them in your products & projects – print or digital,
132 | commercial or otherwise.
133 |
134 | This isn't legal advice, please consider consulting a lawyer and see the full
135 | license for all details.
136 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/README.txt.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 56c9ed0a8b2a24b71a8ff972b15867bf
3 | TextScriptImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: a28a76fdaa89b4ce183635a3c3754221
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static/Inconsolata-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/keijiro/UIToolkitAssets/87049b2bad53d3b02b0385acdc45fb05415cbd32/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static/Inconsolata-Bold.ttf
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static/Inconsolata-Bold.ttf.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: b7134e05797d74e89b088adc09c2ccf0
3 | TrueTypeFontImporter:
4 | externalObjects: {}
5 | serializedVersion: 4
6 | fontSize: 16
7 | forceTextureCase: -2
8 | characterSpacing: 0
9 | characterPadding: 1
10 | includeFontData: 1
11 | fontNames:
12 | - Inconsolata
13 | fallbackFontReferences: []
14 | customCharacters:
15 | fontRenderingMode: 0
16 | ascentCalculationMode: 1
17 | useLegacyBoundsCalculation: 0
18 | shouldRoundAdvanceValue: 1
19 | userData:
20 | assetBundleName:
21 | assetBundleVariant:
22 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static/Inconsolata-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/keijiro/UIToolkitAssets/87049b2bad53d3b02b0385acdc45fb05415cbd32/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static/Inconsolata-Light.ttf
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inconsolata/static/Inconsolata-Light.ttf.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: b2bcb3ab3bd874080be73a0b61eec345
3 | TrueTypeFontImporter:
4 | externalObjects: {}
5 | serializedVersion: 4
6 | fontSize: 16
7 | forceTextureCase: -2
8 | characterSpacing: 0
9 | characterPadding: 1
10 | includeFontData: 1
11 | fontNames:
12 | - Inconsolata
13 | fallbackFontReferences: []
14 | customCharacters:
15 | fontRenderingMode: 0
16 | ascentCalculationMode: 1
17 | useLegacyBoundsCalculation: 0
18 | shouldRoundAdvanceValue: 1
19 | userData:
20 | assetBundleName:
21 | assetBundleVariant:
22 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 8d322323215444c1185e878c82f285cb
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter)
2 |
3 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 | This license is copied below, and is also available with a FAQ at:
5 | https://openfontlicense.org
6 |
7 |
8 | -----------------------------------------------------------
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | -----------------------------------------------------------
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide
14 | development of collaborative font projects, to support the font creation
15 | efforts of academic and linguistic communities, and to provide a free and
16 | open framework in which fonts may be shared and improved in partnership
17 | with others.
18 |
19 | The OFL allows the licensed fonts to be used, studied, modified and
20 | redistributed freely as long as they are not sold by themselves. The
21 | fonts, including any derivative works, can be bundled, embedded,
22 | redistributed and/or sold with any software provided that any reserved
23 | names are not used by derivative works. The fonts and derivatives,
24 | however, cannot be released under any other type of license. The
25 | requirement for fonts to remain under this license does not apply
26 | to any document created using the fonts or their derivatives.
27 |
28 | DEFINITIONS
29 | "Font Software" refers to the set of files released by the Copyright
30 | Holder(s) under this license and clearly marked as such. This may
31 | include source files, build scripts and documentation.
32 |
33 | "Reserved Font Name" refers to any names specified as such after the
34 | copyright statement(s).
35 |
36 | "Original Version" refers to the collection of Font Software components as
37 | distributed by the Copyright Holder(s).
38 |
39 | "Modified Version" refers to any derivative made by adding to, deleting,
40 | or substituting -- in part or in whole -- any of the components of the
41 | Original Version, by changing formats or by porting the Font Software to a
42 | new environment.
43 |
44 | "Author" refers to any designer, engineer, programmer, technical
45 | writer or other person who contributed to the Font Software.
46 |
47 | PERMISSION & CONDITIONS
48 | Permission is hereby granted, free of charge, to any person obtaining
49 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 | redistribute, and sell modified and unmodified copies of the Font
51 | Software, subject to the following conditions:
52 |
53 | 1) Neither the Font Software nor any of its individual components,
54 | in Original or Modified Versions, may be sold by itself.
55 |
56 | 2) Original or Modified Versions of the Font Software may be bundled,
57 | redistributed and/or sold with any software, provided that each copy
58 | contains the above copyright notice and this license. These can be
59 | included either as stand-alone text files, human-readable headers or
60 | in the appropriate machine-readable metadata fields within text or
61 | binary files as long as those fields can be easily viewed by the user.
62 |
63 | 3) No Modified Version of the Font Software may use the Reserved Font
64 | Name(s) unless explicit written permission is granted by the corresponding
65 | Copyright Holder. This restriction only applies to the primary font name as
66 | presented to the users.
67 |
68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 | Software shall not be used to promote, endorse or advertise any
70 | Modified Version, except to acknowledge the contribution(s) of the
71 | Copyright Holder(s) and the Author(s) or with their explicit written
72 | permission.
73 |
74 | 5) The Font Software, modified or unmodified, in part or in whole,
75 | must be distributed entirely under this license, and must not be
76 | distributed under any other license. The requirement for fonts to
77 | remain under this license does not apply to any document created
78 | using the Font Software.
79 |
80 | TERMINATION
81 | This license becomes null and void if any of the above conditions are
82 | not met.
83 |
84 | DISCLAIMER
85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 | OTHER DEALINGS IN THE FONT SOFTWARE.
94 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/OFL.txt.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 5af3e99d5c6cd4109ad3ff83738690bf
3 | TextScriptImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/README.txt:
--------------------------------------------------------------------------------
1 | Inter Variable Font
2 | ===================
3 |
4 | This download contains Inter as both variable fonts and static fonts.
5 |
6 | Inter is a variable font with these axes:
7 | opsz
8 | wght
9 |
10 | This means all the styles are contained in these files:
11 | Inter-VariableFont_opsz,wght.ttf
12 | Inter-Italic-VariableFont_opsz,wght.ttf
13 |
14 | If your app fully supports variable fonts, you can now pick intermediate styles
15 | that aren’t available as static fonts. Not all apps support variable fonts, and
16 | in those cases you can use the static font files for Inter:
17 | static/Inter_18pt-Thin.ttf
18 | static/Inter_18pt-ExtraLight.ttf
19 | static/Inter_18pt-Light.ttf
20 | static/Inter_18pt-Regular.ttf
21 | static/Inter_18pt-Medium.ttf
22 | static/Inter_18pt-SemiBold.ttf
23 | static/Inter_18pt-Bold.ttf
24 | static/Inter_18pt-ExtraBold.ttf
25 | static/Inter_18pt-Black.ttf
26 | static/Inter_24pt-Thin.ttf
27 | static/Inter_24pt-ExtraLight.ttf
28 | static/Inter_24pt-Light.ttf
29 | static/Inter_24pt-Regular.ttf
30 | static/Inter_24pt-Medium.ttf
31 | static/Inter_24pt-SemiBold.ttf
32 | static/Inter_24pt-Bold.ttf
33 | static/Inter_24pt-ExtraBold.ttf
34 | static/Inter_24pt-Black.ttf
35 | static/Inter_28pt-Thin.ttf
36 | static/Inter_28pt-ExtraLight.ttf
37 | static/Inter_28pt-Light.ttf
38 | static/Inter_28pt-Regular.ttf
39 | static/Inter_28pt-Medium.ttf
40 | static/Inter_28pt-SemiBold.ttf
41 | static/Inter_28pt-Bold.ttf
42 | static/Inter_28pt-ExtraBold.ttf
43 | static/Inter_28pt-Black.ttf
44 | static/Inter_18pt-ThinItalic.ttf
45 | static/Inter_18pt-ExtraLightItalic.ttf
46 | static/Inter_18pt-LightItalic.ttf
47 | static/Inter_18pt-Italic.ttf
48 | static/Inter_18pt-MediumItalic.ttf
49 | static/Inter_18pt-SemiBoldItalic.ttf
50 | static/Inter_18pt-BoldItalic.ttf
51 | static/Inter_18pt-ExtraBoldItalic.ttf
52 | static/Inter_18pt-BlackItalic.ttf
53 | static/Inter_24pt-ThinItalic.ttf
54 | static/Inter_24pt-ExtraLightItalic.ttf
55 | static/Inter_24pt-LightItalic.ttf
56 | static/Inter_24pt-Italic.ttf
57 | static/Inter_24pt-MediumItalic.ttf
58 | static/Inter_24pt-SemiBoldItalic.ttf
59 | static/Inter_24pt-BoldItalic.ttf
60 | static/Inter_24pt-ExtraBoldItalic.ttf
61 | static/Inter_24pt-BlackItalic.ttf
62 | static/Inter_28pt-ThinItalic.ttf
63 | static/Inter_28pt-ExtraLightItalic.ttf
64 | static/Inter_28pt-LightItalic.ttf
65 | static/Inter_28pt-Italic.ttf
66 | static/Inter_28pt-MediumItalic.ttf
67 | static/Inter_28pt-SemiBoldItalic.ttf
68 | static/Inter_28pt-BoldItalic.ttf
69 | static/Inter_28pt-ExtraBoldItalic.ttf
70 | static/Inter_28pt-BlackItalic.ttf
71 |
72 | Get started
73 | -----------
74 |
75 | 1. Install the font files you want to use
76 |
77 | 2. Use your app's font picker to view the font family and all the
78 | available styles
79 |
80 | Learn more about variable fonts
81 | -------------------------------
82 |
83 | https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
84 | https://variablefonts.typenetwork.com
85 | https://medium.com/variable-fonts
86 |
87 | In desktop apps
88 |
89 | https://theblog.adobe.com/can-variable-fonts-illustrator-cc
90 | https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
91 |
92 | Online
93 |
94 | https://developers.google.com/fonts/docs/getting_started
95 | https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
96 | https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
97 |
98 | Installing fonts
99 |
100 | MacOS: https://support.apple.com/en-us/HT201749
101 | Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
102 | Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
103 |
104 | Android Apps
105 |
106 | https://developers.google.com/fonts/docs/android
107 | https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
108 |
109 | License
110 | -------
111 | Please read the full license text (OFL.txt) to understand the permissions,
112 | restrictions and requirements for usage, redistribution, and modification.
113 |
114 | You can use them in your products & projects – print or digital,
115 | commercial or otherwise.
116 |
117 | This isn't legal advice, please consider consulting a lawyer and see the full
118 | license for all details.
119 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/README.txt.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 1d8925dfbd48a40c483e6dc556426443
3 | TextScriptImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 20bfedd39f6fa4268a3e684edc10c68c
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/keijiro/UIToolkitAssets/87049b2bad53d3b02b0385acdc45fb05415cbd32/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Bold.ttf
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Bold.ttf.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: f84973951da7d4d5e858d2e8c9a1edb6
3 | TrueTypeFontImporter:
4 | externalObjects: {}
5 | serializedVersion: 4
6 | fontSize: 16
7 | forceTextureCase: -2
8 | characterSpacing: 0
9 | characterPadding: 1
10 | includeFontData: 1
11 | fontNames:
12 | - Inter 18pt
13 | fallbackFontReferences: []
14 | customCharacters:
15 | fontRenderingMode: 0
16 | ascentCalculationMode: 1
17 | useLegacyBoundsCalculation: 0
18 | shouldRoundAdvanceValue: 1
19 | userData:
20 | assetBundleName:
21 | assetBundleVariant:
22 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/keijiro/UIToolkitAssets/87049b2bad53d3b02b0385acdc45fb05415cbd32/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Light.ttf
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Light.ttf.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: b4cdd61aae027485b892e89d6a6c24be
3 | TrueTypeFontImporter:
4 | externalObjects: {}
5 | serializedVersion: 4
6 | fontSize: 16
7 | forceTextureCase: -2
8 | characterSpacing: 0
9 | characterPadding: 1
10 | includeFontData: 1
11 | fontNames:
12 | - Inter 18pt
13 | fallbackFontReferences: []
14 | customCharacters:
15 | fontRenderingMode: 0
16 | ascentCalculationMode: 1
17 | useLegacyBoundsCalculation: 0
18 | shouldRoundAdvanceValue: 1
19 | userData:
20 | assetBundleName:
21 | assetBundleVariant:
22 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 8e3a9074d693044adba067c363617de1
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/AspectRatioElement.cs:
--------------------------------------------------------------------------------
1 | using UnityEngine;
2 | using UnityEngine.UIElements;
3 |
4 | namespace Klak.UIToolkit {
5 |
6 | // Fixed aspect ratio element
7 | // Copy-pasted from UI Toolkit documentation
8 | [UxmlElement]
9 | public sealed partial class AspectRatioElement : VisualElement
10 | {
11 | [UxmlAttribute("width")]
12 | public int RatioWidth
13 | { get => _ratioWidth;
14 | set { _ratioWidth = value; UpdateAspect(); } }
15 |
16 | [UxmlAttribute("height")]
17 | public int RatioHeight
18 | { get => _ratioHeight;
19 | set { _ratioHeight = value; UpdateAspect(); } }
20 |
21 | private int _ratioWidth = 16;
22 | private int _ratioHeight = 9;
23 |
24 | public AspectRatioElement()
25 | {
26 | RegisterCallback(UpdateAspectAfterEvent);
27 | RegisterCallback(UpdateAspectAfterEvent);
28 | }
29 |
30 | static void UpdateAspectAfterEvent(EventBase evt)
31 | => (evt.target as AspectRatioElement)?.UpdateAspect();
32 |
33 | private void ClearPadding()
34 | {
35 | style.paddingLeft = 0;
36 | style.paddingRight = 0;
37 | style.paddingBottom = 0;
38 | style.paddingTop = 0;
39 | }
40 |
41 | private void UpdateAspect()
42 | {
43 | var aspect = (float)RatioWidth / RatioHeight;
44 | var diff = resolvedStyle.width / resolvedStyle.height - aspect;
45 |
46 | if (RatioWidth <= 0.0f || RatioHeight <= 0.0f)
47 | {
48 | ClearPadding();
49 | return;
50 | }
51 |
52 | if (float.IsNaN(resolvedStyle.width)) return;
53 | if (float.IsNaN(resolvedStyle.height)) return;
54 |
55 | if (diff > 0.01f)
56 | {
57 | var w = (resolvedStyle.width - resolvedStyle.height * aspect) / 2;
58 | style.paddingLeft = w;
59 | style.paddingRight = w;
60 | style.paddingTop = 0;
61 | style.paddingBottom = 0;
62 | }
63 | else if (diff < -0.01f)
64 | {
65 | var h = (resolvedStyle.height - resolvedStyle.width / aspect) / 2;
66 | style.paddingLeft= 0;
67 | style.paddingRight = 0;
68 | style.paddingTop = h;
69 | style.paddingBottom = h;
70 | }
71 | else
72 | {
73 | ClearPadding();
74 | }
75 | }
76 | }
77 |
78 | } // namespace Klak.UIToolkit
79 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/AspectRatioElement.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 6497503305b4443cc998efcbd92368f8
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/ClampedFloatField.cs:
--------------------------------------------------------------------------------
1 | using UnityEngine;
2 | using UnityEngine.UIElements;
3 |
4 | namespace Klak.UIToolkit {
5 |
6 | [UxmlElement]
7 | public partial class ClampedFloatField : FloatField
8 | {
9 | [UxmlAttribute] public float lowValue { get; set; } = 0;
10 | [UxmlAttribute] public float highValue { get; set; } = 100;
11 |
12 | public override void SetValueWithoutNotify(float newValue)
13 | => base.SetValueWithoutNotify(Mathf.Clamp(newValue, lowValue, highValue));
14 | }
15 |
16 | } // namespace Klak.UIToolkit
17 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/ClampedFloatField.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: cf1265a9fe64b4ec99b1a50411a0244f
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/ClampedIntegerField.cs:
--------------------------------------------------------------------------------
1 | using UnityEngine;
2 | using UnityEngine.UIElements;
3 |
4 | namespace Klak.UIToolkit {
5 |
6 | [UxmlElement]
7 | public partial class ClampedIntegerField : IntegerField
8 | {
9 | [UxmlAttribute] public int lowValue { get; set; } = 0;
10 | [UxmlAttribute] public int highValue { get; set; } = 100;
11 |
12 | public override void SetValueWithoutNotify(int newValue)
13 | => base.SetValueWithoutNotify(Mathf.Clamp(newValue, lowValue, highValue));
14 | }
15 |
16 | } // namespace Klak.UIToolkit
17 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/ClampedIntegerField.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: e887adf26a35f421782bb59ccfe29cd7
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/Klak.UIToolkit.Runtime.asmdef:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Klak.UIToolkit.Runtime"
3 | }
4 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Scripts/Klak.UIToolkit.Runtime.asmdef.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 0246c55ce759d4a34a44e09695b1a0e9
3 | AssemblyDefinitionImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Textures.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 3182ba19fdd9c4b92b4fe0aeedeb80a9
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Textures/SlideCursor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/keijiro/UIToolkitAssets/87049b2bad53d3b02b0385acdc45fb05415cbd32/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Textures/SlideCursor.png
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Textures/SlideCursor.png.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 81c13d2e6280343cc9d75a5925a3b5b8
3 | TextureImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 13
7 | mipmaps:
8 | mipMapMode: 0
9 | enableMipMap: 0
10 | sRGBTexture: 1
11 | linearTexture: 0
12 | fadeOut: 0
13 | borderMipMap: 0
14 | mipMapsPreserveCoverage: 0
15 | alphaTestReferenceValue: 0.5
16 | mipMapFadeDistanceStart: 1
17 | mipMapFadeDistanceEnd: 3
18 | bumpmap:
19 | convertToNormalMap: 0
20 | externalNormalMap: 0
21 | heightScale: 0.25
22 | normalMapFilter: 0
23 | flipGreenChannel: 0
24 | isReadable: 1
25 | streamingMipmaps: 0
26 | streamingMipmapsPriority: 0
27 | vTOnly: 0
28 | ignoreMipmapLimit: 0
29 | grayScaleToAlpha: 0
30 | generateCubemap: 6
31 | cubemapConvolution: 0
32 | seamlessCubemap: 0
33 | textureFormat: 1
34 | maxTextureSize: 2048
35 | textureSettings:
36 | serializedVersion: 2
37 | filterMode: 1
38 | aniso: 1
39 | mipBias: 0
40 | wrapU: 1
41 | wrapV: 1
42 | wrapW: 0
43 | nPOTScale: 0
44 | lightmap: 0
45 | compressionQuality: 50
46 | spriteMode: 0
47 | spriteExtrude: 1
48 | spriteMeshType: 1
49 | alignment: 0
50 | spritePivot: {x: 0.5, y: 0.5}
51 | spritePixelsToUnits: 100
52 | spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53 | spriteGenerateFallbackPhysicsShape: 1
54 | alphaUsage: 1
55 | alphaIsTransparency: 1
56 | spriteTessellationDetail: -1
57 | textureType: 7
58 | textureShape: 1
59 | singleChannelComponent: 0
60 | flipbookRows: 1
61 | flipbookColumns: 1
62 | maxTextureSizeSet: 0
63 | compressionQualitySet: 0
64 | textureFormatSet: 0
65 | ignorePngGamma: 0
66 | applyGammaDecoding: 0
67 | swizzle: 50462976
68 | cookieLightType: 0
69 | platformSettings:
70 | - serializedVersion: 4
71 | buildTarget: DefaultTexturePlatform
72 | maxTextureSize: 32
73 | resizeAlgorithm: 0
74 | textureFormat: -1
75 | textureCompression: 0
76 | compressionQuality: 50
77 | crunchedCompression: 0
78 | allowsAlphaSplitting: 0
79 | overridden: 0
80 | ignorePlatformSupport: 0
81 | androidETC2FallbackOverride: 0
82 | forceMaximumCompressionQuality_BC6H_BC7: 0
83 | - serializedVersion: 4
84 | buildTarget: Standalone
85 | maxTextureSize: 2048
86 | resizeAlgorithm: 0
87 | textureFormat: -1
88 | textureCompression: 1
89 | compressionQuality: 50
90 | crunchedCompression: 0
91 | allowsAlphaSplitting: 0
92 | overridden: 0
93 | ignorePlatformSupport: 0
94 | androidETC2FallbackOverride: 0
95 | forceMaximumCompressionQuality_BC6H_BC7: 0
96 | - serializedVersion: 4
97 | buildTarget: WebGL
98 | maxTextureSize: 2048
99 | resizeAlgorithm: 0
100 | textureFormat: -1
101 | textureCompression: 1
102 | compressionQuality: 50
103 | crunchedCompression: 0
104 | allowsAlphaSplitting: 0
105 | overridden: 0
106 | ignorePlatformSupport: 0
107 | androidETC2FallbackOverride: 0
108 | forceMaximumCompressionQuality_BC6H_BC7: 0
109 | spriteSheet:
110 | serializedVersion: 2
111 | sprites: []
112 | outline: []
113 | customData:
114 | physicsShape: []
115 | bones: []
116 | spriteID:
117 | internalID: 0
118 | vertices: []
119 | indices:
120 | edges: []
121 | weights: []
122 | secondaryTextures: []
123 | spriteCustomMetadata:
124 | entries: []
125 | nameFileIdTable: {}
126 | mipmapLimitGroupName:
127 | pSDRemoveMatte: 0
128 | userData:
129 | assetBundleName:
130 | assetBundleVariant:
131 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Themes.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 61c9f72c2406c4e488662a3142ba413e
3 | folderAsset: yes
4 | DefaultImporter:
5 | externalObjects: {}
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Themes/Tena.uss:
--------------------------------------------------------------------------------
1 | .unity-text-element {
2 | -unity-font-definition: url("project://database/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Light.ttf?fileID=12800000&guid=b4cdd61aae027485b892e89d6a6c24be&type=3#Inter_18pt-Light");
3 | color: rgb(214, 214, 214);
4 | font-size: 11px;
5 | }
6 |
7 | .unity-base-field {
8 | background-color: rgb(53, 53, 53);
9 | border-radius: 5px;
10 | margin: 4px;
11 | border-width: 1px;
12 | border-color: rgb(53, 53, 53);
13 | width: 150px;
14 | --unity-cursor-color: rgb(180, 180, 180);
15 | }
16 |
17 | .unity-base-field:hover {
18 | border-color: rgb(91, 91, 91);
19 | }
20 |
21 | .unity-base-field__label {
22 | min-width: 60px;
23 | margin-top: 0;
24 | margin-right: 0;
25 | margin-bottom: 0;
26 | margin-left: 8px;
27 | padding: 0;
28 | -unity-text-align: middle-left;
29 | }
30 |
31 | .unity-base-text-field__input {
32 | background-color: rgba(0, 0, 0, 0);
33 | border-width: 0;
34 | padding: 0;
35 | }
36 |
37 | .unity-text-element__selectable {
38 | -unity-font-definition: url("project://database/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Bold.ttf?fileID=12800000&guid=f84973951da7d4d5e858d2e8c9a1edb6&type=3#Inter_18pt-Bold");
39 | padding: 5px;
40 | }
41 |
42 | .unity-toggle__checkmark {
43 | height: 16px;
44 | width: 16px;
45 | margin: 5px;
46 | background-color: rgba(0, 0, 0, 0);
47 | border-width: 1.5px;
48 | border-radius: 5px;
49 | -unity-background-image-tint-color: rgb(128, 128, 128);
50 | border-color: rgb(128, 128, 128);
51 | }
52 |
53 | .unity-button {
54 | border-width: 0;
55 | background-color: rgba(0, 0, 0, 0);
56 | -unity-font-definition: url("project://database/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Bold.ttf?fileID=12800000&guid=f84973951da7d4d5e858d2e8c9a1edb6&type=3#Inter_18pt-Bold");
57 | font-size: 12px;
58 | margin: 4px;
59 | padding: 8px;
60 | }
61 |
62 | .unity-button:hover {
63 | background-color: rgb(63, 63, 63);
64 | border-radius: 5px;
65 | }
66 |
67 | .unity-base-field:focus {
68 | border-color: rgb(41, 117, 185);
69 | }
70 |
71 | .unity-button:active {
72 | background-color: rgb(41, 117, 185);
73 | }
74 |
75 | .header-label {
76 | -unity-font-definition: url("project://database/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Fonts/Inter/static/Inter_18pt-Bold.ttf?fileID=12800000&guid=f84973951da7d4d5e858d2e8c9a1edb6&type=3#Inter_18pt-Bold");
77 | font-size: 14px;
78 | }
79 |
80 | .unity-base-field__label--with-dragger {
81 | cursor: url("project://database/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Textures/SlideCursor.png?fileID=2800000&guid=81c13d2e6280343cc9d75a5925a3b5b8&type=3#SlideCursor") 16 16;
82 | }
83 |
84 | .unity-base-popup-field {
85 | border-color: rgb(128, 128, 128);
86 | background-color: rgba(0, 0, 0, 0);
87 | }
88 |
89 | .unity-base-popup-field__label {
90 | display: none;
91 | }
92 |
93 | .unity-base-popup-field__input {
94 | background-color: rgba(0, 0, 0, 0);
95 | border-width: 0;
96 | margin-top: 0;
97 | margin-right: 16px;
98 | margin-bottom: 0;
99 | margin-left: 8px;
100 | padding: 0;
101 | }
102 |
103 | .unity-popup-field__input:hover {
104 | background-color: rgba(0, 0, 0, 0);
105 | }
106 |
107 | .unity-base-popup-field__arrow {
108 | -unity-background-image-tint-color: rgb(214, 214, 214);
109 | }
110 |
111 | .unity-base-popup-field:hover:enabled > .unity-base-popup-field__input {
112 | background-color: rgba(0, 0, 0, 0);
113 | }
114 |
115 | .unity-base-popup-field:active:enabled > .unity-base-popup-field__input {
116 | background-color: rgba(0, 0, 0, 0);
117 | }
118 |
119 | .unity-base-dropdown__container-outer {
120 | border-radius: 5px;
121 | }
122 |
123 | .unity-base-dropdown__container-inner {
124 | background-color: rgb(53, 53, 53);
125 | }
126 |
127 | .unity-base-dropdown__checkmark {
128 | align-self: center;
129 | }
130 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/Runtime/Themes/Tena.uss.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 2bbbc33e8b2834f0ab25f4d4ef52c082
3 | ScriptedImporter:
4 | internalIDToNameTable: []
5 | externalObjects: {}
6 | serializedVersion: 2
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 | script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
11 | disableValidation: 0
12 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "author": "Keijiro Takahashi",
3 | "dependencies": { "com.unity.modules.uielements": "1.0.0" },
4 | "description": "Asset library for UI Toolkit.",
5 | "displayName": "UI Toolkit Assets",
6 | "keywords": [ "unity" ],
7 | "license": "Unlicense",
8 | "name": "jp.keijiro.klak.ui-toolkit-assets",
9 | "unity": "6000.0",
10 | "unityRelease": "0f1",
11 | "version": "0.2.0"
12 | }
13 |
--------------------------------------------------------------------------------
/Packages/jp.keijiro.klak.ui-toolkit-assets/package.json.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: a3925a10e3ad34de1aaf90c38e59159a
3 | PackageManifestImporter:
4 | externalObjects: {}
5 | userData:
6 | assetBundleName:
7 | assetBundleVariant:
8 |
--------------------------------------------------------------------------------
/Packages/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "com.unity.inputsystem": "1.14.0",
4 | "com.unity.render-pipelines.universal": "17.0.4"
5 | },
6 | "scopedRegistries": [
7 | {
8 | "name": "Keijiro",
9 | "url": "https://registry.npmjs.com",
10 | "scopes": [
11 | "jp.keijiro"
12 | ]
13 | }
14 | ]
15 | }
16 |
--------------------------------------------------------------------------------
/Packages/packages-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "com.unity.burst": {
4 | "version": "1.8.21",
5 | "depth": 2,
6 | "source": "registry",
7 | "dependencies": {
8 | "com.unity.mathematics": "1.2.1",
9 | "com.unity.modules.jsonserialize": "1.0.0"
10 | },
11 | "url": "https://packages.unity.com"
12 | },
13 | "com.unity.collections": {
14 | "version": "2.5.1",
15 | "depth": 2,
16 | "source": "registry",
17 | "dependencies": {
18 | "com.unity.burst": "1.8.17",
19 | "com.unity.test-framework": "1.4.5",
20 | "com.unity.nuget.mono-cecil": "1.11.4",
21 | "com.unity.test-framework.performance": "3.0.3"
22 | },
23 | "url": "https://packages.unity.com"
24 | },
25 | "com.unity.ext.nunit": {
26 | "version": "2.0.5",
27 | "depth": 4,
28 | "source": "builtin",
29 | "dependencies": {}
30 | },
31 | "com.unity.inputsystem": {
32 | "version": "1.14.0",
33 | "depth": 0,
34 | "source": "registry",
35 | "dependencies": {
36 | "com.unity.modules.uielements": "1.0.0"
37 | },
38 | "url": "https://packages.unity.com"
39 | },
40 | "com.unity.mathematics": {
41 | "version": "1.3.2",
42 | "depth": 2,
43 | "source": "registry",
44 | "dependencies": {},
45 | "url": "https://packages.unity.com"
46 | },
47 | "com.unity.nuget.mono-cecil": {
48 | "version": "1.11.4",
49 | "depth": 3,
50 | "source": "registry",
51 | "dependencies": {},
52 | "url": "https://packages.unity.com"
53 | },
54 | "com.unity.render-pipelines.core": {
55 | "version": "17.0.4",
56 | "depth": 1,
57 | "source": "builtin",
58 | "dependencies": {
59 | "com.unity.burst": "1.8.20",
60 | "com.unity.mathematics": "1.3.2",
61 | "com.unity.ugui": "2.0.0",
62 | "com.unity.collections": "2.4.3",
63 | "com.unity.modules.physics": "1.0.0",
64 | "com.unity.modules.terrain": "1.0.0",
65 | "com.unity.modules.jsonserialize": "1.0.0",
66 | "com.unity.rendering.light-transport": "1.0.1"
67 | }
68 | },
69 | "com.unity.render-pipelines.universal": {
70 | "version": "17.0.4",
71 | "depth": 0,
72 | "source": "builtin",
73 | "dependencies": {
74 | "com.unity.render-pipelines.core": "17.0.4",
75 | "com.unity.shadergraph": "17.0.4",
76 | "com.unity.render-pipelines.universal-config": "17.0.3"
77 | }
78 | },
79 | "com.unity.render-pipelines.universal-config": {
80 | "version": "17.0.3",
81 | "depth": 1,
82 | "source": "builtin",
83 | "dependencies": {
84 | "com.unity.render-pipelines.core": "17.0.3"
85 | }
86 | },
87 | "com.unity.rendering.light-transport": {
88 | "version": "1.0.1",
89 | "depth": 2,
90 | "source": "builtin",
91 | "dependencies": {
92 | "com.unity.collections": "2.2.0",
93 | "com.unity.mathematics": "1.2.4",
94 | "com.unity.modules.terrain": "1.0.0"
95 | }
96 | },
97 | "com.unity.searcher": {
98 | "version": "4.9.3",
99 | "depth": 2,
100 | "source": "registry",
101 | "dependencies": {},
102 | "url": "https://packages.unity.com"
103 | },
104 | "com.unity.shadergraph": {
105 | "version": "17.0.4",
106 | "depth": 1,
107 | "source": "builtin",
108 | "dependencies": {
109 | "com.unity.render-pipelines.core": "17.0.4",
110 | "com.unity.searcher": "4.9.3"
111 | }
112 | },
113 | "com.unity.test-framework": {
114 | "version": "1.5.1",
115 | "depth": 3,
116 | "source": "builtin",
117 | "dependencies": {
118 | "com.unity.ext.nunit": "2.0.3",
119 | "com.unity.modules.imgui": "1.0.0",
120 | "com.unity.modules.jsonserialize": "1.0.0"
121 | }
122 | },
123 | "com.unity.test-framework.performance": {
124 | "version": "3.1.0",
125 | "depth": 3,
126 | "source": "registry",
127 | "dependencies": {
128 | "com.unity.test-framework": "1.1.33",
129 | "com.unity.modules.jsonserialize": "1.0.0"
130 | },
131 | "url": "https://packages.unity.com"
132 | },
133 | "com.unity.ugui": {
134 | "version": "2.0.0",
135 | "depth": 2,
136 | "source": "builtin",
137 | "dependencies": {
138 | "com.unity.modules.ui": "1.0.0",
139 | "com.unity.modules.imgui": "1.0.0"
140 | }
141 | },
142 | "jp.keijiro.klak.ui-toolkit-assets": {
143 | "version": "file:jp.keijiro.klak.ui-toolkit-assets",
144 | "depth": 0,
145 | "source": "embedded",
146 | "dependencies": {
147 | "com.unity.modules.uielements": "1.0.0"
148 | }
149 | },
150 | "com.unity.modules.hierarchycore": {
151 | "version": "1.0.0",
152 | "depth": 2,
153 | "source": "builtin",
154 | "dependencies": {}
155 | },
156 | "com.unity.modules.imgui": {
157 | "version": "1.0.0",
158 | "depth": 2,
159 | "source": "builtin",
160 | "dependencies": {}
161 | },
162 | "com.unity.modules.jsonserialize": {
163 | "version": "1.0.0",
164 | "depth": 2,
165 | "source": "builtin",
166 | "dependencies": {}
167 | },
168 | "com.unity.modules.physics": {
169 | "version": "1.0.0",
170 | "depth": 2,
171 | "source": "builtin",
172 | "dependencies": {}
173 | },
174 | "com.unity.modules.terrain": {
175 | "version": "1.0.0",
176 | "depth": 2,
177 | "source": "builtin",
178 | "dependencies": {}
179 | },
180 | "com.unity.modules.ui": {
181 | "version": "1.0.0",
182 | "depth": 2,
183 | "source": "builtin",
184 | "dependencies": {}
185 | },
186 | "com.unity.modules.uielements": {
187 | "version": "1.0.0",
188 | "depth": 1,
189 | "source": "builtin",
190 | "dependencies": {
191 | "com.unity.modules.ui": "1.0.0",
192 | "com.unity.modules.imgui": "1.0.0",
193 | "com.unity.modules.jsonserialize": "1.0.0",
194 | "com.unity.modules.hierarchycore": "1.0.0"
195 | }
196 | }
197 | }
198 | }
199 |
--------------------------------------------------------------------------------
/ProjectSettings/AudioManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!11 &1
4 | AudioManager:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | m_Volume: 1
8 | Rolloff Scale: 1
9 | Doppler Factor: 1
10 | Default Speaker Mode: 2
11 | m_SampleRate: 0
12 | m_DSPBufferSize: 1024
13 | m_VirtualVoiceCount: 512
14 | m_RealVoiceCount: 32
15 | m_SpatializerPlugin:
16 | m_AmbisonicDecoderPlugin:
17 | m_DisableAudio: 0
18 | m_VirtualizeEffects: 1
19 | m_RequestedDSPBufferSize: 1024
20 |
--------------------------------------------------------------------------------
/ProjectSettings/ClusterInputManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!236 &1
4 | ClusterInputManager:
5 | m_ObjectHideFlags: 0
6 | m_Inputs: []
7 |
--------------------------------------------------------------------------------
/ProjectSettings/CommonBurstAotSettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "MonoBehaviour": {
3 | "Version": 4,
4 | "DisabledWarnings": ""
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/ProjectSettings/DynamicsManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!55 &1
4 | PhysicsManager:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 11
7 | m_Gravity: {x: 0, y: -9.81, z: 0}
8 | m_DefaultMaterial: {fileID: 0}
9 | m_BounceThreshold: 2
10 | m_SleepThreshold: 0.005
11 | m_DefaultContactOffset: 0.01
12 | m_DefaultSolverIterations: 6
13 | m_DefaultSolverVelocityIterations: 1
14 | m_QueriesHitBackfaces: 0
15 | m_QueriesHitTriggers: 1
16 | m_EnableAdaptiveForce: 0
17 | m_ClothInterCollisionDistance: 0
18 | m_ClothInterCollisionStiffness: 0
19 | m_ContactsGeneration: 1
20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
21 | m_AutoSimulation: 1
22 | m_AutoSyncTransforms: 0
23 | m_ReuseCollisionCallbacks: 1
24 | m_ClothInterCollisionSettingsToggle: 0
25 | m_ContactPairsMode: 0
26 | m_BroadphaseType: 0
27 | m_WorldBounds:
28 | m_Center: {x: 0, y: 0, z: 0}
29 | m_Extent: {x: 250, y: 250, z: 250}
30 | m_WorldSubdivisions: 8
31 | m_FrictionType: 0
32 | m_EnableEnhancedDeterminism: 0
33 | m_EnableUnifiedHeightmaps: 1
34 | m_DefaultMaxAngluarSpeed: 7
35 |
--------------------------------------------------------------------------------
/ProjectSettings/EditorBuildSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!1045 &1
4 | EditorBuildSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | m_Scenes:
8 | - enabled: 1
9 | path: Assets/Test.unity
10 | guid: ff5702dfe30c34fa2a680f20ba104712
11 | m_configObjects: {}
12 | m_UseUCBPForAssetBundles: 0
13 |
--------------------------------------------------------------------------------
/ProjectSettings/EditorSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!159 &1
4 | EditorSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 12
7 | m_SerializationMode: 2
8 | m_LineEndingsForNewScripts: 1
9 | m_DefaultBehaviorMode: 0
10 | m_PrefabRegularEnvironment: {fileID: 0}
11 | m_PrefabUIEnvironment: {fileID: 0}
12 | m_SpritePackerMode: 0
13 | m_SpritePackerCacheSize: 10
14 | m_SpritePackerPaddingPower: 1
15 | m_Bc7TextureCompressor: 0
16 | m_EtcTextureCompressorBehavior: 1
17 | m_EtcTextureFastCompressor: 1
18 | m_EtcTextureNormalCompressor: 2
19 | m_EtcTextureBestCompressor: 4
20 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref
21 | m_ProjectGenerationRootNamespace:
22 | m_EnableTextureStreamingInEditMode: 1
23 | m_EnableTextureStreamingInPlayMode: 1
24 | m_EnableEditorAsyncCPUTextureLoading: 0
25 | m_AsyncShaderCompilation: 1
26 | m_PrefabModeAllowAutoSave: 1
27 | m_EnterPlayModeOptionsEnabled: 1
28 | m_EnterPlayModeOptions: 3
29 | m_GameObjectNamingDigits: 1
30 | m_GameObjectNamingScheme: 0
31 | m_AssetNamingUsesSpace: 1
32 | m_InspectorUseIMGUIDefaultInspector: 0
33 | m_UseLegacyProbeSampleCount: 0
34 | m_SerializeInlineMappingsOnOneLine: 1
35 | m_DisableCookiesInLightmapper: 0
36 | m_AssetPipelineMode: 1
37 | m_RefreshImportMode: 0
38 | m_CacheServerMode: 0
39 | m_CacheServerEndpoint:
40 | m_CacheServerNamespacePrefix: default
41 | m_CacheServerEnableDownload: 1
42 | m_CacheServerEnableUpload: 1
43 | m_CacheServerEnableAuth: 0
44 | m_CacheServerEnableTls: 0
45 | m_CacheServerValidationMode: 2
46 | m_CacheServerDownloadBatchSize: 128
47 | m_EnableEnlightenBakedGI: 0
48 |
--------------------------------------------------------------------------------
/ProjectSettings/GraphicsSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!30 &1
4 | GraphicsSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 16
7 | m_Deferred:
8 | m_Mode: 1
9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0}
10 | m_DeferredReflections:
11 | m_Mode: 1
12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0}
13 | m_ScreenSpaceShadows:
14 | m_Mode: 1
15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0}
16 | m_DepthNormals:
17 | m_Mode: 1
18 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0}
19 | m_MotionVectors:
20 | m_Mode: 1
21 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0}
22 | m_LightHalo:
23 | m_Mode: 1
24 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0}
25 | m_LensFlare:
26 | m_Mode: 1
27 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0}
28 | m_VideoShadersIncludeMode: 2
29 | m_AlwaysIncludedShaders:
30 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
31 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0}
32 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0}
33 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0}
34 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
35 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
36 | m_PreloadedShaders: []
37 | m_PreloadShadersBatchTimeLimit: -1
38 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
39 | m_CustomRenderPipeline: {fileID: 11400000, guid: 20b57e50be50f4cf3bb2306d63c8e0e7, type: 2}
40 | m_TransparencySortMode: 0
41 | m_TransparencySortAxis: {x: 0, y: 0, z: 1}
42 | m_DefaultRenderingPath: 1
43 | m_DefaultMobileRenderingPath: 1
44 | m_TierSettings: []
45 | m_LightmapStripping: 0
46 | m_FogStripping: 0
47 | m_InstancingStripping: 0
48 | m_BrgStripping: 0
49 | m_LightmapKeepPlain: 1
50 | m_LightmapKeepDirCombined: 1
51 | m_LightmapKeepDynamicPlain: 1
52 | m_LightmapKeepDynamicDirCombined: 1
53 | m_LightmapKeepShadowMask: 1
54 | m_LightmapKeepSubtractive: 1
55 | m_FogKeepLinear: 1
56 | m_FogKeepExp: 1
57 | m_FogKeepExp2: 1
58 | m_AlbedoSwatchInfos: []
59 | m_RenderPipelineGlobalSettingsMap:
60 | UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 27a43ffdced204282b6a42ae51c4b451, type: 2}
61 | m_LightsUseLinearIntensity: 1
62 | m_LightsUseColorTemperature: 1
63 | m_LogWhenShaderIsCompiled: 0
64 | m_LightProbeOutsideHullStrategy: 0
65 | m_CameraRelativeLightCulling: 0
66 | m_CameraRelativeShadowCulling: 0
67 |
--------------------------------------------------------------------------------
/ProjectSettings/InputManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!13 &1
4 | InputManager:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | m_Axes:
8 | - serializedVersion: 3
9 | m_Name: Horizontal
10 | descriptiveName:
11 | descriptiveNegativeName:
12 | negativeButton: left
13 | positiveButton: right
14 | altNegativeButton: a
15 | altPositiveButton: d
16 | gravity: 3
17 | dead: 0.001
18 | sensitivity: 3
19 | snap: 1
20 | invert: 0
21 | type: 0
22 | axis: 0
23 | joyNum: 0
24 | - serializedVersion: 3
25 | m_Name: Vertical
26 | descriptiveName:
27 | descriptiveNegativeName:
28 | negativeButton: down
29 | positiveButton: up
30 | altNegativeButton: s
31 | altPositiveButton: w
32 | gravity: 3
33 | dead: 0.001
34 | sensitivity: 3
35 | snap: 1
36 | invert: 0
37 | type: 0
38 | axis: 0
39 | joyNum: 0
40 | - serializedVersion: 3
41 | m_Name: Fire1
42 | descriptiveName:
43 | descriptiveNegativeName:
44 | negativeButton:
45 | positiveButton: left ctrl
46 | altNegativeButton:
47 | altPositiveButton: mouse 0
48 | gravity: 1000
49 | dead: 0.001
50 | sensitivity: 1000
51 | snap: 0
52 | invert: 0
53 | type: 0
54 | axis: 0
55 | joyNum: 0
56 | - serializedVersion: 3
57 | m_Name: Fire2
58 | descriptiveName:
59 | descriptiveNegativeName:
60 | negativeButton:
61 | positiveButton: left alt
62 | altNegativeButton:
63 | altPositiveButton: mouse 1
64 | gravity: 1000
65 | dead: 0.001
66 | sensitivity: 1000
67 | snap: 0
68 | invert: 0
69 | type: 0
70 | axis: 0
71 | joyNum: 0
72 | - serializedVersion: 3
73 | m_Name: Fire3
74 | descriptiveName:
75 | descriptiveNegativeName:
76 | negativeButton:
77 | positiveButton: left shift
78 | altNegativeButton:
79 | altPositiveButton: mouse 2
80 | gravity: 1000
81 | dead: 0.001
82 | sensitivity: 1000
83 | snap: 0
84 | invert: 0
85 | type: 0
86 | axis: 0
87 | joyNum: 0
88 | - serializedVersion: 3
89 | m_Name: Jump
90 | descriptiveName:
91 | descriptiveNegativeName:
92 | negativeButton:
93 | positiveButton: space
94 | altNegativeButton:
95 | altPositiveButton:
96 | gravity: 1000
97 | dead: 0.001
98 | sensitivity: 1000
99 | snap: 0
100 | invert: 0
101 | type: 0
102 | axis: 0
103 | joyNum: 0
104 | - serializedVersion: 3
105 | m_Name: Mouse X
106 | descriptiveName:
107 | descriptiveNegativeName:
108 | negativeButton:
109 | positiveButton:
110 | altNegativeButton:
111 | altPositiveButton:
112 | gravity: 0
113 | dead: 0
114 | sensitivity: 0.1
115 | snap: 0
116 | invert: 0
117 | type: 1
118 | axis: 0
119 | joyNum: 0
120 | - serializedVersion: 3
121 | m_Name: Mouse Y
122 | descriptiveName:
123 | descriptiveNegativeName:
124 | negativeButton:
125 | positiveButton:
126 | altNegativeButton:
127 | altPositiveButton:
128 | gravity: 0
129 | dead: 0
130 | sensitivity: 0.1
131 | snap: 0
132 | invert: 0
133 | type: 1
134 | axis: 1
135 | joyNum: 0
136 | - serializedVersion: 3
137 | m_Name: Mouse ScrollWheel
138 | descriptiveName:
139 | descriptiveNegativeName:
140 | negativeButton:
141 | positiveButton:
142 | altNegativeButton:
143 | altPositiveButton:
144 | gravity: 0
145 | dead: 0
146 | sensitivity: 0.1
147 | snap: 0
148 | invert: 0
149 | type: 1
150 | axis: 2
151 | joyNum: 0
152 | - serializedVersion: 3
153 | m_Name: Horizontal
154 | descriptiveName:
155 | descriptiveNegativeName:
156 | negativeButton:
157 | positiveButton:
158 | altNegativeButton:
159 | altPositiveButton:
160 | gravity: 0
161 | dead: 0.19
162 | sensitivity: 1
163 | snap: 0
164 | invert: 0
165 | type: 2
166 | axis: 0
167 | joyNum: 0
168 | - serializedVersion: 3
169 | m_Name: Vertical
170 | descriptiveName:
171 | descriptiveNegativeName:
172 | negativeButton:
173 | positiveButton:
174 | altNegativeButton:
175 | altPositiveButton:
176 | gravity: 0
177 | dead: 0.19
178 | sensitivity: 1
179 | snap: 0
180 | invert: 1
181 | type: 2
182 | axis: 1
183 | joyNum: 0
184 | - serializedVersion: 3
185 | m_Name: Fire1
186 | descriptiveName:
187 | descriptiveNegativeName:
188 | negativeButton:
189 | positiveButton: joystick button 0
190 | altNegativeButton:
191 | altPositiveButton:
192 | gravity: 1000
193 | dead: 0.001
194 | sensitivity: 1000
195 | snap: 0
196 | invert: 0
197 | type: 0
198 | axis: 0
199 | joyNum: 0
200 | - serializedVersion: 3
201 | m_Name: Fire2
202 | descriptiveName:
203 | descriptiveNegativeName:
204 | negativeButton:
205 | positiveButton: joystick button 1
206 | altNegativeButton:
207 | altPositiveButton:
208 | gravity: 1000
209 | dead: 0.001
210 | sensitivity: 1000
211 | snap: 0
212 | invert: 0
213 | type: 0
214 | axis: 0
215 | joyNum: 0
216 | - serializedVersion: 3
217 | m_Name: Fire3
218 | descriptiveName:
219 | descriptiveNegativeName:
220 | negativeButton:
221 | positiveButton: joystick button 2
222 | altNegativeButton:
223 | altPositiveButton:
224 | gravity: 1000
225 | dead: 0.001
226 | sensitivity: 1000
227 | snap: 0
228 | invert: 0
229 | type: 0
230 | axis: 0
231 | joyNum: 0
232 | - serializedVersion: 3
233 | m_Name: Jump
234 | descriptiveName:
235 | descriptiveNegativeName:
236 | negativeButton:
237 | positiveButton: joystick button 3
238 | altNegativeButton:
239 | altPositiveButton:
240 | gravity: 1000
241 | dead: 0.001
242 | sensitivity: 1000
243 | snap: 0
244 | invert: 0
245 | type: 0
246 | axis: 0
247 | joyNum: 0
248 | - serializedVersion: 3
249 | m_Name: Submit
250 | descriptiveName:
251 | descriptiveNegativeName:
252 | negativeButton:
253 | positiveButton: return
254 | altNegativeButton:
255 | altPositiveButton: joystick button 0
256 | gravity: 1000
257 | dead: 0.001
258 | sensitivity: 1000
259 | snap: 0
260 | invert: 0
261 | type: 0
262 | axis: 0
263 | joyNum: 0
264 | - serializedVersion: 3
265 | m_Name: Submit
266 | descriptiveName:
267 | descriptiveNegativeName:
268 | negativeButton:
269 | positiveButton: enter
270 | altNegativeButton:
271 | altPositiveButton: space
272 | gravity: 1000
273 | dead: 0.001
274 | sensitivity: 1000
275 | snap: 0
276 | invert: 0
277 | type: 0
278 | axis: 0
279 | joyNum: 0
280 | - serializedVersion: 3
281 | m_Name: Cancel
282 | descriptiveName:
283 | descriptiveNegativeName:
284 | negativeButton:
285 | positiveButton: escape
286 | altNegativeButton:
287 | altPositiveButton: joystick button 1
288 | gravity: 1000
289 | dead: 0.001
290 | sensitivity: 1000
291 | snap: 0
292 | invert: 0
293 | type: 0
294 | axis: 0
295 | joyNum: 0
296 | - serializedVersion: 3
297 | m_Name: Enable Debug Button 1
298 | descriptiveName:
299 | descriptiveNegativeName:
300 | negativeButton:
301 | positiveButton: left ctrl
302 | altNegativeButton:
303 | altPositiveButton: joystick button 8
304 | gravity: 0
305 | dead: 0
306 | sensitivity: 0
307 | snap: 0
308 | invert: 0
309 | type: 0
310 | axis: 0
311 | joyNum: 0
312 | - serializedVersion: 3
313 | m_Name: Enable Debug Button 2
314 | descriptiveName:
315 | descriptiveNegativeName:
316 | negativeButton:
317 | positiveButton: backspace
318 | altNegativeButton:
319 | altPositiveButton: joystick button 9
320 | gravity: 0
321 | dead: 0
322 | sensitivity: 0
323 | snap: 0
324 | invert: 0
325 | type: 0
326 | axis: 0
327 | joyNum: 0
328 | - serializedVersion: 3
329 | m_Name: Debug Reset
330 | descriptiveName:
331 | descriptiveNegativeName:
332 | negativeButton:
333 | positiveButton: left alt
334 | altNegativeButton:
335 | altPositiveButton: joystick button 1
336 | gravity: 0
337 | dead: 0
338 | sensitivity: 0
339 | snap: 0
340 | invert: 0
341 | type: 0
342 | axis: 0
343 | joyNum: 0
344 | - serializedVersion: 3
345 | m_Name: Debug Next
346 | descriptiveName:
347 | descriptiveNegativeName:
348 | negativeButton:
349 | positiveButton: page down
350 | altNegativeButton:
351 | altPositiveButton: joystick button 5
352 | gravity: 0
353 | dead: 0
354 | sensitivity: 0
355 | snap: 0
356 | invert: 0
357 | type: 0
358 | axis: 0
359 | joyNum: 0
360 | - serializedVersion: 3
361 | m_Name: Debug Previous
362 | descriptiveName:
363 | descriptiveNegativeName:
364 | negativeButton:
365 | positiveButton: page up
366 | altNegativeButton:
367 | altPositiveButton: joystick button 4
368 | gravity: 0
369 | dead: 0
370 | sensitivity: 0
371 | snap: 0
372 | invert: 0
373 | type: 0
374 | axis: 0
375 | joyNum: 0
376 | - serializedVersion: 3
377 | m_Name: Debug Validate
378 | descriptiveName:
379 | descriptiveNegativeName:
380 | negativeButton:
381 | positiveButton: return
382 | altNegativeButton:
383 | altPositiveButton: joystick button 0
384 | gravity: 0
385 | dead: 0
386 | sensitivity: 0
387 | snap: 0
388 | invert: 0
389 | type: 0
390 | axis: 0
391 | joyNum: 0
392 | - serializedVersion: 3
393 | m_Name: Debug Persistent
394 | descriptiveName:
395 | descriptiveNegativeName:
396 | negativeButton:
397 | positiveButton: right shift
398 | altNegativeButton:
399 | altPositiveButton: joystick button 2
400 | gravity: 0
401 | dead: 0
402 | sensitivity: 0
403 | snap: 0
404 | invert: 0
405 | type: 0
406 | axis: 0
407 | joyNum: 0
408 | - serializedVersion: 3
409 | m_Name: Debug Multiplier
410 | descriptiveName:
411 | descriptiveNegativeName:
412 | negativeButton:
413 | positiveButton: left shift
414 | altNegativeButton:
415 | altPositiveButton: joystick button 3
416 | gravity: 0
417 | dead: 0
418 | sensitivity: 0
419 | snap: 0
420 | invert: 0
421 | type: 0
422 | axis: 0
423 | joyNum: 0
424 | - serializedVersion: 3
425 | m_Name: Debug Horizontal
426 | descriptiveName:
427 | descriptiveNegativeName:
428 | negativeButton: left
429 | positiveButton: right
430 | altNegativeButton:
431 | altPositiveButton:
432 | gravity: 1000
433 | dead: 0.001
434 | sensitivity: 1000
435 | snap: 0
436 | invert: 0
437 | type: 0
438 | axis: 0
439 | joyNum: 0
440 | - serializedVersion: 3
441 | m_Name: Debug Vertical
442 | descriptiveName:
443 | descriptiveNegativeName:
444 | negativeButton: down
445 | positiveButton: up
446 | altNegativeButton:
447 | altPositiveButton:
448 | gravity: 1000
449 | dead: 0.001
450 | sensitivity: 1000
451 | snap: 0
452 | invert: 0
453 | type: 0
454 | axis: 0
455 | joyNum: 0
456 | - serializedVersion: 3
457 | m_Name: Debug Vertical
458 | descriptiveName:
459 | descriptiveNegativeName:
460 | negativeButton: down
461 | positiveButton: up
462 | altNegativeButton:
463 | altPositiveButton:
464 | gravity: 1000
465 | dead: 0.001
466 | sensitivity: 1000
467 | snap: 0
468 | invert: 0
469 | type: 2
470 | axis: 6
471 | joyNum: 0
472 | - serializedVersion: 3
473 | m_Name: Debug Horizontal
474 | descriptiveName:
475 | descriptiveNegativeName:
476 | negativeButton: left
477 | positiveButton: right
478 | altNegativeButton:
479 | altPositiveButton:
480 | gravity: 1000
481 | dead: 0.001
482 | sensitivity: 1000
483 | snap: 0
484 | invert: 0
485 | type: 2
486 | axis: 5
487 | joyNum: 0
488 | m_UsePhysicalKeys: 1
489 |
--------------------------------------------------------------------------------
/ProjectSettings/MemorySettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!387306366 &1
4 | MemorySettings:
5 | m_ObjectHideFlags: 0
6 | m_EditorMemorySettings:
7 | m_MainAllocatorBlockSize: -1
8 | m_ThreadAllocatorBlockSize: -1
9 | m_MainGfxBlockSize: -1
10 | m_ThreadGfxBlockSize: -1
11 | m_CacheBlockSize: -1
12 | m_TypetreeBlockSize: -1
13 | m_ProfilerBlockSize: -1
14 | m_ProfilerEditorBlockSize: -1
15 | m_BucketAllocatorGranularity: -1
16 | m_BucketAllocatorBucketsCount: -1
17 | m_BucketAllocatorBlockSize: -1
18 | m_BucketAllocatorBlockCount: -1
19 | m_ProfilerBucketAllocatorGranularity: -1
20 | m_ProfilerBucketAllocatorBucketsCount: -1
21 | m_ProfilerBucketAllocatorBlockSize: -1
22 | m_ProfilerBucketAllocatorBlockCount: -1
23 | m_TempAllocatorSizeMain: -1
24 | m_JobTempAllocatorBlockSize: -1
25 | m_BackgroundJobTempAllocatorBlockSize: -1
26 | m_JobTempAllocatorReducedBlockSize: -1
27 | m_TempAllocatorSizeGIBakingWorker: -1
28 | m_TempAllocatorSizeNavMeshWorker: -1
29 | m_TempAllocatorSizeAudioWorker: -1
30 | m_TempAllocatorSizeCloudWorker: -1
31 | m_TempAllocatorSizeGfx: -1
32 | m_TempAllocatorSizeJobWorker: -1
33 | m_TempAllocatorSizeBackgroundWorker: -1
34 | m_TempAllocatorSizePreloadManager: -1
35 | m_PlatformMemorySettings: {}
36 |
--------------------------------------------------------------------------------
/ProjectSettings/MultiplayerManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!655991488 &1
4 | MultiplayerManager:
5 | m_ObjectHideFlags: 0
6 | m_EnableMultiplayerRoles: 0
7 | m_ActiveMultiplayerRole: 0
8 |
--------------------------------------------------------------------------------
/ProjectSettings/NavMeshAreas.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!126 &1
4 | NavMeshProjectSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | areas:
8 | - name: Walkable
9 | cost: 1
10 | - name: Not Walkable
11 | cost: 1
12 | - name: Jump
13 | cost: 2
14 | - name:
15 | cost: 1
16 | - name:
17 | cost: 1
18 | - name:
19 | cost: 1
20 | - name:
21 | cost: 1
22 | - name:
23 | cost: 1
24 | - name:
25 | cost: 1
26 | - name:
27 | cost: 1
28 | - name:
29 | cost: 1
30 | - name:
31 | cost: 1
32 | - name:
33 | cost: 1
34 | - name:
35 | cost: 1
36 | - name:
37 | cost: 1
38 | - name:
39 | cost: 1
40 | - name:
41 | cost: 1
42 | - name:
43 | cost: 1
44 | - name:
45 | cost: 1
46 | - name:
47 | cost: 1
48 | - name:
49 | cost: 1
50 | - name:
51 | cost: 1
52 | - name:
53 | cost: 1
54 | - name:
55 | cost: 1
56 | - name:
57 | cost: 1
58 | - name:
59 | cost: 1
60 | - name:
61 | cost: 1
62 | - name:
63 | cost: 1
64 | - name:
65 | cost: 1
66 | - name:
67 | cost: 1
68 | - name:
69 | cost: 1
70 | - name:
71 | cost: 1
72 | m_LastAgentTypeID: -887442657
73 | m_Settings:
74 | - serializedVersion: 2
75 | agentTypeID: 0
76 | agentRadius: 0.5
77 | agentHeight: 2
78 | agentSlope: 45
79 | agentClimb: 0.75
80 | ledgeDropHeight: 0
81 | maxJumpAcrossDistance: 0
82 | minRegionArea: 2
83 | manualCellSize: 0
84 | cellSize: 0.16666667
85 | manualTileSize: 0
86 | tileSize: 256
87 | accuratePlacement: 0
88 | debug:
89 | m_Flags: 0
90 | m_SettingNames:
91 | - Humanoid
92 |
--------------------------------------------------------------------------------
/ProjectSettings/PackageManagerSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &1
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 61
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0}
13 | m_Name:
14 | m_EditorClassIdentifier:
15 | m_EnablePreReleasePackages: 1
16 | m_AdvancedSettingsExpanded: 1
17 | m_ScopedRegistriesSettingsExpanded: 1
18 | m_SeeAllPackageVersions: 0
19 | m_DismissPreviewPackagesInUse: 0
20 | oneTimeWarningShown: 1
21 | oneTimeDeprecatedPopUpShown: 0
22 | m_Registries:
23 | - m_Id: main
24 | m_Name:
25 | m_Url: https://packages.unity.com
26 | m_Scopes: []
27 | m_IsDefault: 1
28 | m_Capabilities: 7
29 | m_ConfigSource: 0
30 | - m_Id: scoped:project:Keijiro
31 | m_Name: Keijiro
32 | m_Url: https://registry.npmjs.com
33 | m_Scopes:
34 | - jp.keijiro
35 | m_IsDefault: 0
36 | m_Capabilities: 0
37 | m_ConfigSource: 4
38 | m_UserSelectedRegistryName: Keijiro
39 | m_UserAddingNewScopedRegistry: 0
40 | m_RegistryInfoDraft:
41 | m_Modified: 0
42 | m_ErrorMessage:
43 | m_UserModificationsInstanceId: -850
44 | m_OriginalInstanceId: -852
45 | m_LoadAssets: 0
46 |
--------------------------------------------------------------------------------
/ProjectSettings/Physics2DSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!19 &1
4 | Physics2DSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 4
7 | m_Gravity: {x: 0, y: -9.81}
8 | m_DefaultMaterial: {fileID: 0}
9 | m_VelocityIterations: 8
10 | m_PositionIterations: 3
11 | m_VelocityThreshold: 1
12 | m_MaxLinearCorrection: 0.2
13 | m_MaxAngularCorrection: 8
14 | m_MaxTranslationSpeed: 100
15 | m_MaxRotationSpeed: 360
16 | m_BaumgarteScale: 0.2
17 | m_BaumgarteTimeOfImpactScale: 0.75
18 | m_TimeToSleep: 0.5
19 | m_LinearSleepTolerance: 0.01
20 | m_AngularSleepTolerance: 2
21 | m_DefaultContactOffset: 0.01
22 | m_JobOptions:
23 | serializedVersion: 2
24 | useMultithreading: 0
25 | useConsistencySorting: 0
26 | m_InterpolationPosesPerJob: 100
27 | m_NewContactsPerJob: 30
28 | m_CollideContactsPerJob: 100
29 | m_ClearFlagsPerJob: 200
30 | m_ClearBodyForcesPerJob: 200
31 | m_SyncDiscreteFixturesPerJob: 50
32 | m_SyncContinuousFixturesPerJob: 50
33 | m_FindNearestContactsPerJob: 100
34 | m_UpdateTriggerContactsPerJob: 100
35 | m_IslandSolverCostThreshold: 100
36 | m_IslandSolverBodyCostScale: 1
37 | m_IslandSolverContactCostScale: 10
38 | m_IslandSolverJointCostScale: 10
39 | m_IslandSolverBodiesPerJob: 50
40 | m_IslandSolverContactsPerJob: 50
41 | m_AutoSimulation: 1
42 | m_QueriesHitTriggers: 1
43 | m_QueriesStartInColliders: 1
44 | m_CallbacksOnDisable: 1
45 | m_ReuseCollisionCallbacks: 1
46 | m_AutoSyncTransforms: 0
47 | m_AlwaysShowColliders: 0
48 | m_ShowColliderSleep: 1
49 | m_ShowColliderContacts: 0
50 | m_ShowColliderAABB: 0
51 | m_ContactArrowScale: 0.2
52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412}
53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432}
54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745}
55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804}
56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
57 |
--------------------------------------------------------------------------------
/ProjectSettings/PresetManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!1386491679 &1
4 | PresetManager:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 2
7 | m_DefaultPresets: {}
8 |
--------------------------------------------------------------------------------
/ProjectSettings/ProjectSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!129 &1
4 | PlayerSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 28
7 | productGUID: 036249926a96a495b96795ec539ced9a
8 | AndroidProfiler: 0
9 | AndroidFilterTouchesWhenObscured: 0
10 | AndroidEnableSustainedPerformanceMode: 0
11 | defaultScreenOrientation: 4
12 | targetDevice: 2
13 | useOnDemandResources: 0
14 | accelerometerFrequency: 60
15 | companyName: Keijiro
16 | productName: URP Template
17 | defaultCursor: {fileID: 0}
18 | cursorHotspot: {x: 0, y: 0}
19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
20 | m_ShowUnitySplashScreen: 0
21 | m_ShowUnitySplashLogo: 1
22 | m_SplashScreenOverlayOpacity: 1
23 | m_SplashScreenAnimation: 1
24 | m_SplashScreenLogoStyle: 1
25 | m_SplashScreenDrawMode: 0
26 | m_SplashScreenBackgroundAnimationZoom: 1
27 | m_SplashScreenLogoAnimationZoom: 1
28 | m_SplashScreenBackgroundLandscapeAspect: 1
29 | m_SplashScreenBackgroundPortraitAspect: 1
30 | m_SplashScreenBackgroundLandscapeUvs:
31 | serializedVersion: 2
32 | x: 0
33 | y: 0
34 | width: 1
35 | height: 1
36 | m_SplashScreenBackgroundPortraitUvs:
37 | serializedVersion: 2
38 | x: 0
39 | y: 0
40 | width: 1
41 | height: 1
42 | m_SplashScreenLogos: []
43 | m_VirtualRealitySplashScreen: {fileID: 0}
44 | m_HolographicTrackingLossScreen: {fileID: 0}
45 | defaultScreenWidth: 1920
46 | defaultScreenHeight: 1080
47 | defaultScreenWidthWeb: 960
48 | defaultScreenHeightWeb: 600
49 | m_StereoRenderingPath: 0
50 | m_ActiveColorSpace: 1
51 | unsupportedMSAAFallback: 0
52 | m_SpriteBatchMaxVertexCount: 65535
53 | m_SpriteBatchVertexThreshold: 300
54 | m_MTRendering: 1
55 | mipStripping: 0
56 | numberOfMipsStripped: 0
57 | numberOfMipsStrippedPerMipmapLimitGroup: {}
58 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000
59 | iosShowActivityIndicatorOnLoading: -1
60 | androidShowActivityIndicatorOnLoading: -1
61 | iosUseCustomAppBackgroundBehavior: 0
62 | allowedAutorotateToPortrait: 1
63 | allowedAutorotateToPortraitUpsideDown: 1
64 | allowedAutorotateToLandscapeRight: 1
65 | allowedAutorotateToLandscapeLeft: 1
66 | useOSAutorotation: 1
67 | use32BitDisplayBuffer: 1
68 | preserveFramebufferAlpha: 0
69 | disableDepthAndStencilBuffers: 0
70 | androidStartInFullscreen: 1
71 | androidRenderOutsideSafeArea: 1
72 | androidUseSwappy: 1
73 | androidBlitType: 0
74 | androidResizeableActivity: 0
75 | androidDefaultWindowWidth: 1920
76 | androidDefaultWindowHeight: 1080
77 | androidMinimumWindowWidth: 400
78 | androidMinimumWindowHeight: 300
79 | androidFullscreenMode: 1
80 | androidAutoRotationBehavior: 1
81 | androidPredictiveBackSupport: 0
82 | androidApplicationEntry: 2
83 | defaultIsNativeResolution: 1
84 | macRetinaSupport: 1
85 | runInBackground: 0
86 | muteOtherAudioSources: 0
87 | Prepare IOS For Recording: 0
88 | Force IOS Speakers When Recording: 0
89 | deferSystemGesturesMode: 0
90 | hideHomeButton: 0
91 | submitAnalytics: 1
92 | usePlayerLog: 1
93 | dedicatedServerOptimizations: 0
94 | bakeCollisionMeshes: 0
95 | forceSingleInstance: 0
96 | useFlipModelSwapchain: 1
97 | resizableWindow: 0
98 | useMacAppStoreValidation: 0
99 | macAppStoreCategory: public.app-category.games
100 | gpuSkinning: 1
101 | meshDeformation: 2
102 | xboxPIXTextureCapture: 0
103 | xboxEnableAvatar: 0
104 | xboxEnableKinect: 0
105 | xboxEnableKinectAutoTracking: 0
106 | xboxEnableFitness: 0
107 | visibleInBackground: 1
108 | allowFullscreenSwitch: 1
109 | fullscreenMode: 3
110 | xboxSpeechDB: 0
111 | xboxEnableHeadOrientation: 0
112 | xboxEnableGuest: 0
113 | xboxEnablePIXSampling: 0
114 | metalFramebufferOnly: 0
115 | xboxOneResolution: 0
116 | xboxOneSResolution: 0
117 | xboxOneXResolution: 3
118 | xboxOneMonoLoggingLevel: 0
119 | xboxOneLoggingLevel: 1
120 | xboxOneDisableEsram: 0
121 | xboxOneEnableTypeOptimization: 0
122 | xboxOnePresentImmediateThreshold: 0
123 | switchQueueCommandMemory: 0
124 | switchQueueControlMemory: 16384
125 | switchQueueComputeMemory: 262144
126 | switchNVNShaderPoolsGranularity: 33554432
127 | switchNVNDefaultPoolsGranularity: 16777216
128 | switchNVNOtherPoolsGranularity: 16777216
129 | switchGpuScratchPoolGranularity: 2097152
130 | switchAllowGpuScratchShrinking: 0
131 | switchNVNMaxPublicTextureIDCount: 0
132 | switchNVNMaxPublicSamplerIDCount: 0
133 | switchMaxWorkerMultiple: 8
134 | switchNVNGraphicsFirmwareMemory: 32
135 | vulkanNumSwapchainBuffers: 3
136 | vulkanEnableSetSRGBWrite: 0
137 | vulkanEnablePreTransform: 1
138 | vulkanEnableLateAcquireNextImage: 0
139 | vulkanEnableCommandBufferRecycling: 1
140 | loadStoreDebugModeEnabled: 0
141 | visionOSBundleVersion: 1.0
142 | tvOSBundleVersion: 1.0
143 | bundleVersion: 0.1
144 | preloadedAssets: []
145 | metroInputSource: 0
146 | wsaTransparentSwapchain: 0
147 | m_HolographicPauseOnTrackingLoss: 1
148 | xboxOneDisableKinectGpuReservation: 1
149 | xboxOneEnable7thCore: 1
150 | vrSettings:
151 | enable360StereoCapture: 0
152 | isWsaHolographicRemotingEnabled: 0
153 | enableFrameTimingStats: 0
154 | enableOpenGLProfilerGPURecorders: 1
155 | allowHDRDisplaySupport: 0
156 | useHDRDisplay: 0
157 | hdrBitDepth: 0
158 | m_ColorGamuts: 00000000
159 | targetPixelDensity: 30
160 | resolutionScalingMode: 0
161 | resetResolutionOnWindowResize: 0
162 | androidSupportedAspectRatio: 1
163 | androidMaxAspectRatio: 2.1
164 | androidMinAspectRatio: 1
165 | applicationIdentifier:
166 | Standalone: com.Keijiro.URP-Template
167 | buildNumber:
168 | Bratwurst: 0
169 | Standalone: 0
170 | VisionOS: 0
171 | iPhone: 0
172 | tvOS: 0
173 | overrideDefaultApplicationIdentifier: 0
174 | AndroidBundleVersionCode: 1
175 | AndroidMinSdkVersion: 23
176 | AndroidTargetSdkVersion: 0
177 | AndroidPreferredInstallLocation: 1
178 | aotOptions:
179 | stripEngineCode: 1
180 | iPhoneStrippingLevel: 0
181 | iPhoneScriptCallOptimization: 0
182 | ForceInternetPermission: 0
183 | ForceSDCardPermission: 0
184 | CreateWallpaper: 0
185 | androidSplitApplicationBinary: 0
186 | keepLoadedShadersAlive: 0
187 | StripUnusedMeshComponents: 1
188 | strictShaderVariantMatching: 0
189 | VertexChannelCompressionMask: 4054
190 | iPhoneSdkVersion: 988
191 | iOSSimulatorArchitecture: 0
192 | iOSTargetOSVersionString: 13.0
193 | tvOSSdkVersion: 0
194 | tvOSSimulatorArchitecture: 0
195 | tvOSRequireExtendedGameController: 0
196 | tvOSTargetOSVersionString: 13.0
197 | VisionOSSdkVersion: 0
198 | VisionOSTargetOSVersionString: 1.0
199 | uIPrerenderedIcon: 0
200 | uIRequiresPersistentWiFi: 0
201 | uIRequiresFullScreen: 1
202 | uIStatusBarHidden: 1
203 | uIExitOnSuspend: 0
204 | uIStatusBarStyle: 0
205 | appleTVSplashScreen: {fileID: 0}
206 | appleTVSplashScreen2x: {fileID: 0}
207 | tvOSSmallIconLayers: []
208 | tvOSSmallIconLayers2x: []
209 | tvOSLargeIconLayers: []
210 | tvOSLargeIconLayers2x: []
211 | tvOSTopShelfImageLayers: []
212 | tvOSTopShelfImageLayers2x: []
213 | tvOSTopShelfImageWideLayers: []
214 | tvOSTopShelfImageWideLayers2x: []
215 | iOSLaunchScreenType: 0
216 | iOSLaunchScreenPortrait: {fileID: 0}
217 | iOSLaunchScreenLandscape: {fileID: 0}
218 | iOSLaunchScreenBackgroundColor:
219 | serializedVersion: 2
220 | rgba: 0
221 | iOSLaunchScreenFillPct: 100
222 | iOSLaunchScreenSize: 100
223 | iOSLaunchScreeniPadType: 0
224 | iOSLaunchScreeniPadImage: {fileID: 0}
225 | iOSLaunchScreeniPadBackgroundColor:
226 | serializedVersion: 2
227 | rgba: 0
228 | iOSLaunchScreeniPadFillPct: 100
229 | iOSLaunchScreeniPadSize: 100
230 | iOSLaunchScreenCustomStoryboardPath:
231 | iOSLaunchScreeniPadCustomStoryboardPath:
232 | iOSDeviceRequirements: []
233 | iOSURLSchemes: []
234 | macOSURLSchemes: []
235 | iOSBackgroundModes: 0
236 | iOSMetalForceHardShadows: 0
237 | metalEditorSupport: 1
238 | metalAPIValidation: 1
239 | metalCompileShaderBinary: 0
240 | iOSRenderExtraFrameOnPause: 0
241 | iosCopyPluginsCodeInsteadOfSymlink: 0
242 | appleDeveloperTeamID:
243 | iOSManualSigningProvisioningProfileID:
244 | tvOSManualSigningProvisioningProfileID:
245 | VisionOSManualSigningProvisioningProfileID:
246 | iOSManualSigningProvisioningProfileType: 0
247 | tvOSManualSigningProvisioningProfileType: 0
248 | VisionOSManualSigningProvisioningProfileType: 0
249 | appleEnableAutomaticSigning: 0
250 | iOSRequireARKit: 0
251 | iOSAutomaticallyDetectAndAddCapabilities: 1
252 | appleEnableProMotion: 0
253 | shaderPrecisionModel: 0
254 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea
255 | templatePackageId: com.unity.template.3d@8.1.4
256 | templateDefaultScene: Assets/Scenes/SampleScene.unity
257 | useCustomMainManifest: 0
258 | useCustomLauncherManifest: 0
259 | useCustomMainGradleTemplate: 0
260 | useCustomLauncherGradleManifest: 0
261 | useCustomBaseGradleTemplate: 0
262 | useCustomGradlePropertiesTemplate: 0
263 | useCustomGradleSettingsTemplate: 0
264 | useCustomProguardFile: 0
265 | AndroidTargetArchitectures: 2
266 | AndroidSplashScreenScale: 0
267 | androidSplashScreen: {fileID: 0}
268 | AndroidKeystoreName:
269 | AndroidKeyaliasName:
270 | AndroidEnableArmv9SecurityFeatures: 0
271 | AndroidEnableArm64MTE: 0
272 | AndroidBuildApkPerCpuArchitecture: 0
273 | AndroidTVCompatibility: 0
274 | AndroidIsGame: 1
275 | AndroidEnableTango: 0
276 | androidEnableBanner: 1
277 | androidUseLowAccuracyLocation: 0
278 | androidUseCustomKeystore: 0
279 | m_AndroidBanners:
280 | - width: 320
281 | height: 180
282 | banner: {fileID: 0}
283 | androidGamepadSupportLevel: 0
284 | AndroidMinifyRelease: 0
285 | AndroidMinifyDebug: 0
286 | AndroidValidateAppBundleSize: 1
287 | AndroidAppBundleSizeToValidate: 150
288 | AndroidReportGooglePlayAppDependencies: 1
289 | androidSymbolsSizeThreshold: 800
290 | m_BuildTargetIcons: []
291 | m_BuildTargetPlatformIcons:
292 | - m_BuildTarget: iPhone
293 | m_Icons:
294 | - m_Textures: []
295 | m_Width: 180
296 | m_Height: 180
297 | m_Kind: 0
298 | m_SubKind: iPhone
299 | - m_Textures: []
300 | m_Width: 120
301 | m_Height: 120
302 | m_Kind: 0
303 | m_SubKind: iPhone
304 | - m_Textures: []
305 | m_Width: 167
306 | m_Height: 167
307 | m_Kind: 0
308 | m_SubKind: iPad
309 | - m_Textures: []
310 | m_Width: 152
311 | m_Height: 152
312 | m_Kind: 0
313 | m_SubKind: iPad
314 | - m_Textures: []
315 | m_Width: 76
316 | m_Height: 76
317 | m_Kind: 0
318 | m_SubKind: iPad
319 | - m_Textures: []
320 | m_Width: 120
321 | m_Height: 120
322 | m_Kind: 3
323 | m_SubKind: iPhone
324 | - m_Textures: []
325 | m_Width: 80
326 | m_Height: 80
327 | m_Kind: 3
328 | m_SubKind: iPhone
329 | - m_Textures: []
330 | m_Width: 80
331 | m_Height: 80
332 | m_Kind: 3
333 | m_SubKind: iPad
334 | - m_Textures: []
335 | m_Width: 40
336 | m_Height: 40
337 | m_Kind: 3
338 | m_SubKind: iPad
339 | - m_Textures: []
340 | m_Width: 87
341 | m_Height: 87
342 | m_Kind: 1
343 | m_SubKind: iPhone
344 | - m_Textures: []
345 | m_Width: 58
346 | m_Height: 58
347 | m_Kind: 1
348 | m_SubKind: iPhone
349 | - m_Textures: []
350 | m_Width: 29
351 | m_Height: 29
352 | m_Kind: 1
353 | m_SubKind: iPhone
354 | - m_Textures: []
355 | m_Width: 58
356 | m_Height: 58
357 | m_Kind: 1
358 | m_SubKind: iPad
359 | - m_Textures: []
360 | m_Width: 29
361 | m_Height: 29
362 | m_Kind: 1
363 | m_SubKind: iPad
364 | - m_Textures: []
365 | m_Width: 60
366 | m_Height: 60
367 | m_Kind: 2
368 | m_SubKind: iPhone
369 | - m_Textures: []
370 | m_Width: 40
371 | m_Height: 40
372 | m_Kind: 2
373 | m_SubKind: iPhone
374 | - m_Textures: []
375 | m_Width: 40
376 | m_Height: 40
377 | m_Kind: 2
378 | m_SubKind: iPad
379 | - m_Textures: []
380 | m_Width: 20
381 | m_Height: 20
382 | m_Kind: 2
383 | m_SubKind: iPad
384 | - m_Textures: []
385 | m_Width: 1024
386 | m_Height: 1024
387 | m_Kind: 4
388 | m_SubKind: App Store
389 | - m_BuildTarget: Android
390 | m_Icons:
391 | - m_Textures: []
392 | m_Width: 432
393 | m_Height: 432
394 | m_Kind: 2
395 | m_SubKind:
396 | - m_Textures: []
397 | m_Width: 324
398 | m_Height: 324
399 | m_Kind: 2
400 | m_SubKind:
401 | - m_Textures: []
402 | m_Width: 216
403 | m_Height: 216
404 | m_Kind: 2
405 | m_SubKind:
406 | - m_Textures: []
407 | m_Width: 162
408 | m_Height: 162
409 | m_Kind: 2
410 | m_SubKind:
411 | - m_Textures: []
412 | m_Width: 108
413 | m_Height: 108
414 | m_Kind: 2
415 | m_SubKind:
416 | - m_Textures: []
417 | m_Width: 81
418 | m_Height: 81
419 | m_Kind: 2
420 | m_SubKind:
421 | - m_Textures: []
422 | m_Width: 192
423 | m_Height: 192
424 | m_Kind: 1
425 | m_SubKind:
426 | - m_Textures: []
427 | m_Width: 144
428 | m_Height: 144
429 | m_Kind: 1
430 | m_SubKind:
431 | - m_Textures: []
432 | m_Width: 96
433 | m_Height: 96
434 | m_Kind: 1
435 | m_SubKind:
436 | - m_Textures: []
437 | m_Width: 72
438 | m_Height: 72
439 | m_Kind: 1
440 | m_SubKind:
441 | - m_Textures: []
442 | m_Width: 48
443 | m_Height: 48
444 | m_Kind: 1
445 | m_SubKind:
446 | - m_Textures: []
447 | m_Width: 36
448 | m_Height: 36
449 | m_Kind: 1
450 | m_SubKind:
451 | - m_Textures: []
452 | m_Width: 192
453 | m_Height: 192
454 | m_Kind: 0
455 | m_SubKind:
456 | - m_Textures: []
457 | m_Width: 144
458 | m_Height: 144
459 | m_Kind: 0
460 | m_SubKind:
461 | - m_Textures: []
462 | m_Width: 96
463 | m_Height: 96
464 | m_Kind: 0
465 | m_SubKind:
466 | - m_Textures: []
467 | m_Width: 72
468 | m_Height: 72
469 | m_Kind: 0
470 | m_SubKind:
471 | - m_Textures: []
472 | m_Width: 48
473 | m_Height: 48
474 | m_Kind: 0
475 | m_SubKind:
476 | - m_Textures: []
477 | m_Width: 36
478 | m_Height: 36
479 | m_Kind: 0
480 | m_SubKind:
481 | m_BuildTargetBatching:
482 | - m_BuildTarget: Standalone
483 | m_StaticBatching: 1
484 | m_DynamicBatching: 0
485 | - m_BuildTarget: tvOS
486 | m_StaticBatching: 1
487 | m_DynamicBatching: 0
488 | - m_BuildTarget: Android
489 | m_StaticBatching: 1
490 | m_DynamicBatching: 0
491 | - m_BuildTarget: iPhone
492 | m_StaticBatching: 1
493 | m_DynamicBatching: 0
494 | - m_BuildTarget: WebGL
495 | m_StaticBatching: 0
496 | m_DynamicBatching: 0
497 | m_BuildTargetShaderSettings: []
498 | m_BuildTargetGraphicsJobs:
499 | - m_BuildTarget: MacStandaloneSupport
500 | m_GraphicsJobs: 0
501 | - m_BuildTarget: Switch
502 | m_GraphicsJobs: 1
503 | - m_BuildTarget: MetroSupport
504 | m_GraphicsJobs: 1
505 | - m_BuildTarget: AppleTVSupport
506 | m_GraphicsJobs: 0
507 | - m_BuildTarget: BJMSupport
508 | m_GraphicsJobs: 1
509 | - m_BuildTarget: LinuxStandaloneSupport
510 | m_GraphicsJobs: 1
511 | - m_BuildTarget: PS4Player
512 | m_GraphicsJobs: 1
513 | - m_BuildTarget: iOSSupport
514 | m_GraphicsJobs: 0
515 | - m_BuildTarget: WindowsStandaloneSupport
516 | m_GraphicsJobs: 1
517 | - m_BuildTarget: XboxOnePlayer
518 | m_GraphicsJobs: 1
519 | - m_BuildTarget: LuminSupport
520 | m_GraphicsJobs: 0
521 | - m_BuildTarget: AndroidPlayer
522 | m_GraphicsJobs: 0
523 | - m_BuildTarget: WebGLSupport
524 | m_GraphicsJobs: 0
525 | m_BuildTargetGraphicsJobMode:
526 | - m_BuildTarget: PS4Player
527 | m_GraphicsJobMode: 0
528 | - m_BuildTarget: XboxOnePlayer
529 | m_GraphicsJobMode: 0
530 | m_BuildTargetGraphicsAPIs:
531 | - m_BuildTarget: AndroidPlayer
532 | m_APIs: 150000000b000000
533 | m_Automatic: 1
534 | - m_BuildTarget: iOSSupport
535 | m_APIs: 10000000
536 | m_Automatic: 1
537 | - m_BuildTarget: AppleTVSupport
538 | m_APIs: 10000000
539 | m_Automatic: 1
540 | - m_BuildTarget: WebGLSupport
541 | m_APIs: 0b000000
542 | m_Automatic: 1
543 | m_BuildTargetVRSettings:
544 | - m_BuildTarget: Standalone
545 | m_Enabled: 0
546 | m_Devices:
547 | - Oculus
548 | - OpenVR
549 | m_DefaultShaderChunkSizeInMB: 16
550 | m_DefaultShaderChunkCount: 0
551 | openGLRequireES31: 0
552 | openGLRequireES31AEP: 0
553 | openGLRequireES32: 0
554 | m_TemplateCustomTags: {}
555 | mobileMTRendering:
556 | Android: 1
557 | iPhone: 1
558 | tvOS: 1
559 | m_BuildTargetGroupLightmapEncodingQuality:
560 | - serializedVersion: 2
561 | m_BuildTarget: Android
562 | m_EncodingQuality: 1
563 | - serializedVersion: 2
564 | m_BuildTarget: iOS
565 | m_EncodingQuality: 1
566 | - serializedVersion: 2
567 | m_BuildTarget: tvOS
568 | m_EncodingQuality: 1
569 | m_BuildTargetGroupLightmapSettings: []
570 | m_BuildTargetGroupLoadStoreDebugModeSettings: []
571 | m_BuildTargetNormalMapEncoding:
572 | - m_BuildTarget: Android
573 | m_Encoding: 1
574 | - m_BuildTarget: iPhone
575 | m_Encoding: 1
576 | - m_BuildTarget: tvOS
577 | m_Encoding: 1
578 | m_BuildTargetDefaultTextureCompressionFormat:
579 | - serializedVersion: 3
580 | m_BuildTarget: Android
581 | m_Formats: 03000000
582 | playModeTestRunnerEnabled: 0
583 | runPlayModeTestAsEditModeTest: 0
584 | actionOnDotNetUnhandledException: 1
585 | editorGfxJobOverride: 1
586 | enableInternalProfiler: 0
587 | logObjCUncaughtExceptions: 1
588 | enableCrashReportAPI: 0
589 | cameraUsageDescription:
590 | locationUsageDescription:
591 | microphoneUsageDescription:
592 | bluetoothUsageDescription:
593 | macOSTargetOSVersion: 11.0
594 | switchNMETAOverride:
595 | switchNetLibKey:
596 | switchSocketMemoryPoolSize: 6144
597 | switchSocketAllocatorPoolSize: 128
598 | switchSocketConcurrencyLimit: 14
599 | switchScreenResolutionBehavior: 2
600 | switchUseCPUProfiler: 0
601 | switchEnableFileSystemTrace: 0
602 | switchLTOSetting: 0
603 | switchApplicationID: 0x01004b9000490000
604 | switchNSODependencies:
605 | switchCompilerFlags:
606 | switchTitleNames_0:
607 | switchTitleNames_1:
608 | switchTitleNames_2:
609 | switchTitleNames_3:
610 | switchTitleNames_4:
611 | switchTitleNames_5:
612 | switchTitleNames_6:
613 | switchTitleNames_7:
614 | switchTitleNames_8:
615 | switchTitleNames_9:
616 | switchTitleNames_10:
617 | switchTitleNames_11:
618 | switchTitleNames_12:
619 | switchTitleNames_13:
620 | switchTitleNames_14:
621 | switchTitleNames_15:
622 | switchPublisherNames_0:
623 | switchPublisherNames_1:
624 | switchPublisherNames_2:
625 | switchPublisherNames_3:
626 | switchPublisherNames_4:
627 | switchPublisherNames_5:
628 | switchPublisherNames_6:
629 | switchPublisherNames_7:
630 | switchPublisherNames_8:
631 | switchPublisherNames_9:
632 | switchPublisherNames_10:
633 | switchPublisherNames_11:
634 | switchPublisherNames_12:
635 | switchPublisherNames_13:
636 | switchPublisherNames_14:
637 | switchPublisherNames_15:
638 | switchIcons_0: {fileID: 0}
639 | switchIcons_1: {fileID: 0}
640 | switchIcons_2: {fileID: 0}
641 | switchIcons_3: {fileID: 0}
642 | switchIcons_4: {fileID: 0}
643 | switchIcons_5: {fileID: 0}
644 | switchIcons_6: {fileID: 0}
645 | switchIcons_7: {fileID: 0}
646 | switchIcons_8: {fileID: 0}
647 | switchIcons_9: {fileID: 0}
648 | switchIcons_10: {fileID: 0}
649 | switchIcons_11: {fileID: 0}
650 | switchIcons_12: {fileID: 0}
651 | switchIcons_13: {fileID: 0}
652 | switchIcons_14: {fileID: 0}
653 | switchIcons_15: {fileID: 0}
654 | switchSmallIcons_0: {fileID: 0}
655 | switchSmallIcons_1: {fileID: 0}
656 | switchSmallIcons_2: {fileID: 0}
657 | switchSmallIcons_3: {fileID: 0}
658 | switchSmallIcons_4: {fileID: 0}
659 | switchSmallIcons_5: {fileID: 0}
660 | switchSmallIcons_6: {fileID: 0}
661 | switchSmallIcons_7: {fileID: 0}
662 | switchSmallIcons_8: {fileID: 0}
663 | switchSmallIcons_9: {fileID: 0}
664 | switchSmallIcons_10: {fileID: 0}
665 | switchSmallIcons_11: {fileID: 0}
666 | switchSmallIcons_12: {fileID: 0}
667 | switchSmallIcons_13: {fileID: 0}
668 | switchSmallIcons_14: {fileID: 0}
669 | switchSmallIcons_15: {fileID: 0}
670 | switchManualHTML:
671 | switchAccessibleURLs:
672 | switchLegalInformation:
673 | switchMainThreadStackSize: 1048576
674 | switchPresenceGroupId:
675 | switchLogoHandling: 0
676 | switchReleaseVersion: 0
677 | switchDisplayVersion: 1.0.0
678 | switchStartupUserAccount: 0
679 | switchSupportedLanguagesMask: 0
680 | switchLogoType: 0
681 | switchApplicationErrorCodeCategory:
682 | switchUserAccountSaveDataSize: 0
683 | switchUserAccountSaveDataJournalSize: 0
684 | switchApplicationAttribute: 0
685 | switchCardSpecSize: -1
686 | switchCardSpecClock: -1
687 | switchRatingsMask: 0
688 | switchRatingsInt_0: 0
689 | switchRatingsInt_1: 0
690 | switchRatingsInt_2: 0
691 | switchRatingsInt_3: 0
692 | switchRatingsInt_4: 0
693 | switchRatingsInt_5: 0
694 | switchRatingsInt_6: 0
695 | switchRatingsInt_7: 0
696 | switchRatingsInt_8: 0
697 | switchRatingsInt_9: 0
698 | switchRatingsInt_10: 0
699 | switchRatingsInt_11: 0
700 | switchRatingsInt_12: 0
701 | switchLocalCommunicationIds_0:
702 | switchLocalCommunicationIds_1:
703 | switchLocalCommunicationIds_2:
704 | switchLocalCommunicationIds_3:
705 | switchLocalCommunicationIds_4:
706 | switchLocalCommunicationIds_5:
707 | switchLocalCommunicationIds_6:
708 | switchLocalCommunicationIds_7:
709 | switchParentalControl: 0
710 | switchAllowsScreenshot: 1
711 | switchAllowsVideoCapturing: 1
712 | switchAllowsRuntimeAddOnContentInstall: 0
713 | switchDataLossConfirmation: 0
714 | switchUserAccountLockEnabled: 0
715 | switchSystemResourceMemory: 16777216
716 | switchSupportedNpadStyles: 22
717 | switchNativeFsCacheSize: 32
718 | switchIsHoldTypeHorizontal: 0
719 | switchSupportedNpadCount: 8
720 | switchEnableTouchScreen: 1
721 | switchSocketConfigEnabled: 0
722 | switchTcpInitialSendBufferSize: 32
723 | switchTcpInitialReceiveBufferSize: 64
724 | switchTcpAutoSendBufferSizeMax: 256
725 | switchTcpAutoReceiveBufferSizeMax: 256
726 | switchUdpSendBufferSize: 9
727 | switchUdpReceiveBufferSize: 42
728 | switchSocketBufferEfficiency: 4
729 | switchSocketInitializeEnabled: 1
730 | switchNetworkInterfaceManagerInitializeEnabled: 1
731 | switchDisableHTCSPlayerConnection: 0
732 | switchUseNewStyleFilepaths: 1
733 | switchUseLegacyFmodPriorities: 0
734 | switchUseMicroSleepForYield: 1
735 | switchEnableRamDiskSupport: 0
736 | switchMicroSleepForYieldTime: 25
737 | switchRamDiskSpaceSize: 12
738 | switchUpgradedPlayerSettingsToNMETA: 0
739 | ps4NPAgeRating: 12
740 | ps4NPTitleSecret:
741 | ps4NPTrophyPackPath:
742 | ps4ParentalLevel: 11
743 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000
744 | ps4Category: 0
745 | ps4MasterVersion: 01.00
746 | ps4AppVersion: 01.00
747 | ps4AppType: 0
748 | ps4ParamSfxPath:
749 | ps4VideoOutPixelFormat: 0
750 | ps4VideoOutInitialWidth: 1920
751 | ps4VideoOutBaseModeInitialWidth: 1920
752 | ps4VideoOutReprojectionRate: 60
753 | ps4PronunciationXMLPath:
754 | ps4PronunciationSIGPath:
755 | ps4BackgroundImagePath:
756 | ps4StartupImagePath:
757 | ps4StartupImagesFolder:
758 | ps4IconImagesFolder:
759 | ps4SaveDataImagePath:
760 | ps4SdkOverride:
761 | ps4BGMPath:
762 | ps4ShareFilePath:
763 | ps4ShareOverlayImagePath:
764 | ps4PrivacyGuardImagePath:
765 | ps4ExtraSceSysFile:
766 | ps4NPtitleDatPath:
767 | ps4RemotePlayKeyAssignment: -1
768 | ps4RemotePlayKeyMappingDir:
769 | ps4PlayTogetherPlayerCount: 0
770 | ps4EnterButtonAssignment: 1
771 | ps4ApplicationParam1: 0
772 | ps4ApplicationParam2: 0
773 | ps4ApplicationParam3: 0
774 | ps4ApplicationParam4: 0
775 | ps4DownloadDataSize: 0
776 | ps4GarlicHeapSize: 2048
777 | ps4ProGarlicHeapSize: 2560
778 | playerPrefsMaxSize: 32768
779 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
780 | ps4pnSessions: 1
781 | ps4pnPresence: 1
782 | ps4pnFriends: 1
783 | ps4pnGameCustomData: 1
784 | playerPrefsSupport: 0
785 | enableApplicationExit: 0
786 | resetTempFolder: 1
787 | restrictedAudioUsageRights: 0
788 | ps4UseResolutionFallback: 0
789 | ps4ReprojectionSupport: 0
790 | ps4UseAudio3dBackend: 0
791 | ps4UseLowGarlicFragmentationMode: 1
792 | ps4SocialScreenEnabled: 0
793 | ps4ScriptOptimizationLevel: 0
794 | ps4Audio3dVirtualSpeakerCount: 14
795 | ps4attribCpuUsage: 0
796 | ps4PatchPkgPath:
797 | ps4PatchLatestPkgPath:
798 | ps4PatchChangeinfoPath:
799 | ps4PatchDayOne: 0
800 | ps4attribUserManagement: 0
801 | ps4attribMoveSupport: 0
802 | ps4attrib3DSupport: 0
803 | ps4attribShareSupport: 0
804 | ps4attribExclusiveVR: 0
805 | ps4disableAutoHideSplash: 0
806 | ps4videoRecordingFeaturesUsed: 0
807 | ps4contentSearchFeaturesUsed: 0
808 | ps4CompatibilityPS5: 0
809 | ps4AllowPS5Detection: 0
810 | ps4GPU800MHz: 1
811 | ps4attribEyeToEyeDistanceSettingVR: 0
812 | ps4IncludedModules: []
813 | ps4attribVROutputEnabled: 0
814 | monoEnv:
815 | splashScreenBackgroundSourceLandscape: {fileID: 0}
816 | splashScreenBackgroundSourcePortrait: {fileID: 0}
817 | blurSplashScreenBackground: 1
818 | spritePackerPolicy:
819 | webGLMemorySize: 16
820 | webGLExceptionSupport: 1
821 | webGLNameFilesAsHashes: 0
822 | webGLShowDiagnostics: 0
823 | webGLDataCaching: 1
824 | webGLDebugSymbols: 0
825 | webGLEmscriptenArgs:
826 | webGLModulesDirectory:
827 | webGLTemplate: APPLICATION:Default
828 | webGLAnalyzeBuildSize: 0
829 | webGLUseEmbeddedResources: 0
830 | webGLCompressionFormat: 1
831 | webGLWasmArithmeticExceptions: 0
832 | webGLLinkerTarget: 1
833 | webGLThreadsSupport: 0
834 | webGLDecompressionFallback: 0
835 | webGLInitialMemorySize: 32
836 | webGLMaximumMemorySize: 2048
837 | webGLMemoryGrowthMode: 2
838 | webGLMemoryLinearGrowthStep: 16
839 | webGLMemoryGeometricGrowthStep: 0.2
840 | webGLMemoryGeometricGrowthCap: 96
841 | webGLEnableWebGPU: 1
842 | webGLPowerPreference: 2
843 | webGLWebAssemblyTable: 0
844 | webGLWebAssemblyBigInt: 0
845 | webGLCloseOnQuit: 0
846 | webWasm2023: 0
847 | scriptingDefineSymbols: {}
848 | additionalCompilerArguments: {}
849 | platformArchitecture: {}
850 | scriptingBackend:
851 | Android: 1
852 | Standalone: 0
853 | il2cppCompilerConfiguration: {}
854 | il2cppCodeGeneration: {}
855 | il2cppStacktraceInformation: {}
856 | managedStrippingLevel:
857 | Android: 1
858 | Bratwurst: 1
859 | EmbeddedLinux: 1
860 | GameCoreScarlett: 1
861 | GameCoreXboxOne: 1
862 | Nintendo Switch: 1
863 | PS4: 1
864 | PS5: 1
865 | QNX: 1
866 | WebGL: 1
867 | Windows Store Apps: 1
868 | XboxOne: 1
869 | iPhone: 1
870 | tvOS: 1
871 | incrementalIl2cppBuild: {}
872 | suppressCommonWarnings: 0
873 | allowUnsafeCode: 0
874 | useDeterministicCompilation: 1
875 | additionalIl2CppArgs:
876 | scriptingRuntimeVersion: 1
877 | gcIncremental: 1
878 | gcWBarrierValidation: 0
879 | apiCompatibilityLevelPerPlatform: {}
880 | editorAssembliesCompatibilityLevel: 1
881 | m_RenderingPath: 1
882 | m_MobileRenderingPath: 1
883 | metroPackageName: URP-Template
884 | metroPackageVersion:
885 | metroCertificatePath:
886 | metroCertificatePassword:
887 | metroCertificateSubject:
888 | metroCertificateIssuer:
889 | metroCertificateNotAfter: 0000000000000000
890 | metroApplicationDescription: URP-Template
891 | wsaImages: {}
892 | metroTileShortName:
893 | metroTileShowName: 0
894 | metroMediumTileShowName: 0
895 | metroLargeTileShowName: 0
896 | metroWideTileShowName: 0
897 | metroSupportStreamingInstall: 0
898 | metroLastRequiredScene: 0
899 | metroDefaultTileSize: 1
900 | metroTileForegroundText: 2
901 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
902 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1}
903 | metroSplashScreenUseBackgroundColor: 0
904 | syncCapabilities: 0
905 | platformCapabilities: {}
906 | metroTargetDeviceFamilies: {}
907 | metroFTAName:
908 | metroFTAFileTypes: []
909 | metroProtocolName:
910 | vcxProjDefaultLanguage:
911 | XboxOneProductId:
912 | XboxOneUpdateKey:
913 | XboxOneSandboxId:
914 | XboxOneContentId:
915 | XboxOneTitleId:
916 | XboxOneSCId:
917 | XboxOneGameOsOverridePath:
918 | XboxOnePackagingOverridePath:
919 | XboxOneAppManifestOverridePath:
920 | XboxOneVersion: 1.0.0.0
921 | XboxOnePackageEncryption: 0
922 | XboxOnePackageUpdateGranularity: 2
923 | XboxOneDescription:
924 | XboxOneLanguage:
925 | - enus
926 | XboxOneCapability: []
927 | XboxOneGameRating: {}
928 | XboxOneIsContentPackage: 0
929 | XboxOneEnhancedXboxCompatibilityMode: 0
930 | XboxOneEnableGPUVariability: 1
931 | XboxOneSockets: {}
932 | XboxOneSplashScreen: {fileID: 0}
933 | XboxOneAllowedProductIds: []
934 | XboxOnePersistentLocalStorageSize: 0
935 | XboxOneXTitleMemory: 8
936 | XboxOneOverrideIdentityName:
937 | XboxOneOverrideIdentityPublisher:
938 | vrEditorSettings: {}
939 | cloudServicesEnabled:
940 | UNet: 1
941 | luminIcon:
942 | m_Name:
943 | m_ModelFolderPath:
944 | m_PortalFolderPath:
945 | luminCert:
946 | m_CertPath:
947 | m_SignPackage: 1
948 | luminIsChannelApp: 0
949 | luminVersion:
950 | m_VersionCode: 1
951 | m_VersionName:
952 | hmiPlayerDataPath:
953 | hmiForceSRGBBlit: 0
954 | embeddedLinuxEnableGamepadInput: 0
955 | hmiCpuConfiguration:
956 | hmiLogStartupTiming: 0
957 | qnxGraphicConfPath:
958 | apiCompatibilityLevel: 6
959 | captureStartupLogs: {}
960 | activeInputHandler: 1
961 | windowsGamepadBackendHint: 0
962 | cloudProjectId:
963 | framebufferDepthMemorylessMode: 0
964 | qualitySettingsNames: []
965 | projectName:
966 | organizationId:
967 | cloudEnabled: 0
968 | legacyClampBlendShapeWeights: 0
969 | hmiLoadingImage: {fileID: 0}
970 | platformRequiresReadableAssets: 0
971 | virtualTexturingSupportEnabled: 0
972 | insecureHttpOption: 0
973 | androidVulkanDenyFilterList: []
974 | androidVulkanAllowFilterList: []
975 |
--------------------------------------------------------------------------------
/ProjectSettings/ProjectVersion.txt:
--------------------------------------------------------------------------------
1 | m_EditorVersion: 6000.0.49f1
2 | m_EditorVersionWithRevision: 6000.0.49f1 (840e0a9776d9)
3 |
--------------------------------------------------------------------------------
/ProjectSettings/QualitySettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!47 &1
4 | QualitySettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 5
7 | m_CurrentQuality: 0
8 | m_QualitySettings:
9 | - serializedVersion: 4
10 | name: High
11 | pixelLightCount: 2
12 | shadows: 2
13 | shadowResolution: 1
14 | shadowProjection: 1
15 | shadowCascades: 2
16 | shadowDistance: 40
17 | shadowNearPlaneOffset: 3
18 | shadowCascade2Split: 0.33333334
19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
20 | shadowmaskMode: 1
21 | skinWeights: 2
22 | globalTextureMipmapLimit: 0
23 | textureMipmapLimitSettings: []
24 | anisotropicTextures: 1
25 | antiAliasing: 0
26 | softParticles: 0
27 | softVegetation: 1
28 | realtimeReflectionProbes: 1
29 | billboardsFaceCameraPosition: 1
30 | useLegacyDetailDistribution: 1
31 | adaptiveVsync: 0
32 | vSyncCount: 1
33 | realtimeGICPUUsage: 50
34 | adaptiveVsyncExtraA: 0
35 | adaptiveVsyncExtraB: 0
36 | lodBias: 1
37 | maximumLODLevel: 0
38 | enableLODCrossFade: 1
39 | streamingMipmapsActive: 0
40 | streamingMipmapsAddAllCameras: 1
41 | streamingMipmapsMemoryBudget: 512
42 | streamingMipmapsRenderersPerFrame: 512
43 | streamingMipmapsMaxLevelReduction: 2
44 | streamingMipmapsMaxFileIORequests: 1024
45 | particleRaycastBudget: 256
46 | asyncUploadTimeSlice: 2
47 | asyncUploadBufferSize: 16
48 | asyncUploadPersistentBuffer: 1
49 | resolutionScalingFixedDPIFactor: 1
50 | customRenderPipeline: {fileID: 0}
51 | terrainQualityOverrides: 0
52 | terrainPixelError: 1
53 | terrainDetailDensityScale: 1
54 | terrainBasemapDistance: 1000
55 | terrainDetailDistance: 80
56 | terrainTreeDistance: 5000
57 | terrainBillboardStart: 50
58 | terrainFadeLength: 5
59 | terrainMaxTrees: 50
60 | excludedTargetPlatforms: []
61 | m_TextureMipmapLimitGroupNames: []
62 | m_PerPlatformDefaultQuality:
63 | Android: 0
64 | GameCoreScarlett: 0
65 | GameCoreXboxOne: 0
66 | Lumin: 0
67 | Nintendo 3DS: 0
68 | Nintendo Switch: 0
69 | PS4: 0
70 | PS5: 0
71 | Stadia: 0
72 | Standalone: 0
73 | WebGL: 0
74 | Windows Store Apps: 0
75 | XboxOne: 0
76 | iPhone: 0
77 | tvOS: 0
78 |
--------------------------------------------------------------------------------
/ProjectSettings/SceneTemplateSettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "templatePinStates": [],
3 | "dependencyTypeInfos": [
4 | {
5 | "userAdded": false,
6 | "type": "UnityEngine.AnimationClip",
7 | "defaultInstantiationMode": 0
8 | },
9 | {
10 | "userAdded": false,
11 | "type": "UnityEditor.Animations.AnimatorController",
12 | "defaultInstantiationMode": 0
13 | },
14 | {
15 | "userAdded": false,
16 | "type": "UnityEngine.AnimatorOverrideController",
17 | "defaultInstantiationMode": 0
18 | },
19 | {
20 | "userAdded": false,
21 | "type": "UnityEditor.Audio.AudioMixerController",
22 | "defaultInstantiationMode": 0
23 | },
24 | {
25 | "userAdded": false,
26 | "type": "UnityEngine.ComputeShader",
27 | "defaultInstantiationMode": 1
28 | },
29 | {
30 | "userAdded": false,
31 | "type": "UnityEngine.Cubemap",
32 | "defaultInstantiationMode": 0
33 | },
34 | {
35 | "userAdded": false,
36 | "type": "UnityEngine.GameObject",
37 | "defaultInstantiationMode": 0
38 | },
39 | {
40 | "userAdded": false,
41 | "type": "UnityEditor.LightingDataAsset",
42 | "defaultInstantiationMode": 0
43 | },
44 | {
45 | "userAdded": false,
46 | "type": "UnityEngine.LightingSettings",
47 | "defaultInstantiationMode": 0
48 | },
49 | {
50 | "userAdded": false,
51 | "type": "UnityEngine.Material",
52 | "defaultInstantiationMode": 0
53 | },
54 | {
55 | "userAdded": false,
56 | "type": "UnityEditor.MonoScript",
57 | "defaultInstantiationMode": 1
58 | },
59 | {
60 | "userAdded": false,
61 | "type": "UnityEngine.PhysicMaterial",
62 | "defaultInstantiationMode": 0
63 | },
64 | {
65 | "userAdded": false,
66 | "type": "UnityEngine.PhysicsMaterial",
67 | "defaultInstantiationMode": 0
68 | },
69 | {
70 | "userAdded": false,
71 | "type": "UnityEngine.PhysicsMaterial2D",
72 | "defaultInstantiationMode": 0
73 | },
74 | {
75 | "userAdded": false,
76 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile",
77 | "defaultInstantiationMode": 0
78 | },
79 | {
80 | "userAdded": false,
81 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources",
82 | "defaultInstantiationMode": 0
83 | },
84 | {
85 | "userAdded": false,
86 | "type": "UnityEngine.Rendering.VolumeProfile",
87 | "defaultInstantiationMode": 0
88 | },
89 | {
90 | "userAdded": false,
91 | "type": "UnityEditor.SceneAsset",
92 | "defaultInstantiationMode": 1
93 | },
94 | {
95 | "userAdded": false,
96 | "type": "UnityEngine.Shader",
97 | "defaultInstantiationMode": 1
98 | },
99 | {
100 | "userAdded": false,
101 | "type": "UnityEngine.ShaderVariantCollection",
102 | "defaultInstantiationMode": 1
103 | },
104 | {
105 | "userAdded": false,
106 | "type": "UnityEngine.Texture",
107 | "defaultInstantiationMode": 0
108 | },
109 | {
110 | "userAdded": false,
111 | "type": "UnityEngine.Texture2D",
112 | "defaultInstantiationMode": 0
113 | },
114 | {
115 | "userAdded": false,
116 | "type": "UnityEngine.Timeline.TimelineAsset",
117 | "defaultInstantiationMode": 0
118 | }
119 | ],
120 | "defaultDependencyTypeInfo": {
121 | "userAdded": false,
122 | "type": "",
123 | "defaultInstantiationMode": 1
124 | },
125 | "newSceneOverride": 0
126 | }
--------------------------------------------------------------------------------
/ProjectSettings/ShaderGraphSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &1
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 53
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3}
13 | m_Name:
14 | m_EditorClassIdentifier:
15 | shaderVariantLimit: 128
16 | customInterpolatorErrorThreshold: 32
17 | customInterpolatorWarningThreshold: 16
18 | customHeatmapValues: {fileID: 0}
19 |
--------------------------------------------------------------------------------
/ProjectSettings/TagManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!78 &1
4 | TagManager:
5 | serializedVersion: 2
6 | tags: []
7 | layers:
8 | - Default
9 | - TransparentFX
10 | - Ignore Raycast
11 | -
12 | - Water
13 | - UI
14 | -
15 | -
16 | -
17 | -
18 | -
19 | -
20 | -
21 | -
22 | -
23 | -
24 | -
25 | -
26 | -
27 | -
28 | -
29 | -
30 | -
31 | -
32 | -
33 | -
34 | -
35 | -
36 | -
37 | -
38 | -
39 | -
40 | m_SortingLayers:
41 | - name: Default
42 | uniqueID: 0
43 | locked: 0
44 |
--------------------------------------------------------------------------------
/ProjectSettings/TimeManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!5 &1
4 | TimeManager:
5 | m_ObjectHideFlags: 0
6 | Fixed Timestep: 0.02
7 | Maximum Allowed Timestep: 0.33333334
8 | m_TimeScale: 1
9 | Maximum Particle Timestep: 0.03
10 |
--------------------------------------------------------------------------------
/ProjectSettings/URPProjectSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!114 &1
4 | MonoBehaviour:
5 | m_ObjectHideFlags: 61
6 | m_CorrespondingSourceObject: {fileID: 0}
7 | m_PrefabInstance: {fileID: 0}
8 | m_PrefabAsset: {fileID: 0}
9 | m_GameObject: {fileID: 0}
10 | m_Enabled: 1
11 | m_EditorHideFlags: 0
12 | m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3}
13 | m_Name:
14 | m_EditorClassIdentifier:
15 | m_LastMaterialVersion: 9
16 |
--------------------------------------------------------------------------------
/ProjectSettings/UnityConnectSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!310 &1
4 | UnityConnectSettings:
5 | m_ObjectHideFlags: 0
6 | serializedVersion: 1
7 | m_Enabled: 0
8 | m_TestMode: 0
9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events
10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events
11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com
12 | m_DashboardUrl: https://dashboard.unity3d.com
13 | m_TestInitMode: 0
14 | CrashReportingSettings:
15 | m_EventUrl: https://perf-events.cloud.unity3d.com
16 | m_Enabled: 0
17 | m_LogBufferSize: 10
18 | m_CaptureEditorExceptions: 1
19 | UnityPurchasingSettings:
20 | m_Enabled: 0
21 | m_TestMode: 0
22 | UnityAnalyticsSettings:
23 | m_Enabled: 0
24 | m_TestMode: 0
25 | m_InitializeOnStartup: 1
26 | m_PackageRequiringCoreStatsPresent: 0
27 | UnityAdsSettings:
28 | m_Enabled: 0
29 | m_InitializeOnStartup: 1
30 | m_TestMode: 0
31 | m_IosGameId:
32 | m_AndroidGameId:
33 | m_GameIds: {}
34 | m_GameId:
35 | PerformanceReportingSettings:
36 | m_Enabled: 0
37 |
--------------------------------------------------------------------------------
/ProjectSettings/VFXManager.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!937362698 &1
4 | VFXManager:
5 | m_ObjectHideFlags: 0
6 | m_IndirectShader: {fileID: 0}
7 | m_CopyBufferShader: {fileID: 0}
8 | m_SortShader: {fileID: 0}
9 | m_StripUpdateShader: {fileID: 0}
10 | m_RenderPipeSettingsPath:
11 | m_FixedTimeStep: 0.016666668
12 | m_MaxDeltaTime: 0.05
13 |
--------------------------------------------------------------------------------
/ProjectSettings/VersionControlSettings.asset:
--------------------------------------------------------------------------------
1 | %YAML 1.1
2 | %TAG !u! tag:unity3d.com,2011:
3 | --- !u!890905787 &1
4 | VersionControlSettings:
5 | m_ObjectHideFlags: 0
6 | m_Mode: Visible Meta Files
7 | m_CollabEditorSettings:
8 | inProgressEnabled: 1
9 |
--------------------------------------------------------------------------------