more plats
This commit is contained in:
parent
ea9672939a
commit
e341b39876
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"visualstudiotoolsforunity.vstuc"
|
||||||
|
]
|
||||||
|
}
|
||||||
10
.vscode/launch.json
vendored
Normal file
10
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Attach to Unity",
|
||||||
|
"type": "vstuc",
|
||||||
|
"request": "attach"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
106
.vscode/settings.json
vendored
106
.vscode/settings.json
vendored
|
|
@ -1,56 +1,56 @@
|
||||||
{
|
{
|
||||||
"files.exclude":
|
"files.exclude": {
|
||||||
{
|
"**/.DS_Store": true,
|
||||||
"**/.DS_Store":true,
|
"**/.git": true,
|
||||||
"**/.git":true,
|
"**/.gitmodules": true,
|
||||||
"**/.gitmodules":true,
|
"**/*.booproj": true,
|
||||||
"**/*.booproj":true,
|
"**/*.pidb": true,
|
||||||
"**/*.pidb":true,
|
"**/*.suo": true,
|
||||||
"**/*.suo":true,
|
"**/*.user": true,
|
||||||
"**/*.user":true,
|
"**/*.userprefs": true,
|
||||||
"**/*.userprefs":true,
|
"**/*.unityproj": true,
|
||||||
"**/*.unityproj":true,
|
"**/*.dll": true,
|
||||||
"**/*.dll":true,
|
"**/*.exe": true,
|
||||||
"**/*.exe":true,
|
"**/*.pdf": true,
|
||||||
"**/*.pdf":true,
|
"**/*.mid": true,
|
||||||
"**/*.mid":true,
|
"**/*.midi": true,
|
||||||
"**/*.midi":true,
|
"**/*.wav": true,
|
||||||
"**/*.wav":true,
|
"**/*.gif": true,
|
||||||
"**/*.gif":true,
|
"**/*.ico": true,
|
||||||
"**/*.ico":true,
|
"**/*.jpg": true,
|
||||||
"**/*.jpg":true,
|
"**/*.jpeg": true,
|
||||||
"**/*.jpeg":true,
|
"**/*.png": true,
|
||||||
"**/*.png":true,
|
"**/*.psd": true,
|
||||||
"**/*.psd":true,
|
"**/*.tga": true,
|
||||||
"**/*.tga":true,
|
"**/*.tif": true,
|
||||||
"**/*.tif":true,
|
"**/*.tiff": true,
|
||||||
"**/*.tiff":true,
|
"**/*.3ds": true,
|
||||||
"**/*.3ds":true,
|
"**/*.3DS": true,
|
||||||
"**/*.3DS":true,
|
"**/*.fbx": true,
|
||||||
"**/*.fbx":true,
|
"**/*.FBX": true,
|
||||||
"**/*.FBX":true,
|
"**/*.lxo": true,
|
||||||
"**/*.lxo":true,
|
"**/*.LXO": true,
|
||||||
"**/*.LXO":true,
|
"**/*.ma": true,
|
||||||
"**/*.ma":true,
|
"**/*.MA": true,
|
||||||
"**/*.MA":true,
|
"**/*.obj": true,
|
||||||
"**/*.obj":true,
|
"**/*.OBJ": true,
|
||||||
"**/*.OBJ":true,
|
"**/*.asset": true,
|
||||||
"**/*.asset":true,
|
"**/*.cubemap": true,
|
||||||
"**/*.cubemap":true,
|
"**/*.flare": true,
|
||||||
"**/*.flare":true,
|
"**/*.mat": true,
|
||||||
"**/*.mat":true,
|
"**/*.meta": true,
|
||||||
"**/*.meta":true,
|
"**/*.prefab": true,
|
||||||
"**/*.prefab":true,
|
"**/*.unity": true,
|
||||||
"**/*.unity":true,
|
"build/": true,
|
||||||
"build/":true,
|
"Build/": true,
|
||||||
"Build/":true,
|
"Library/": true,
|
||||||
"Library/":true,
|
"library/": true,
|
||||||
"library/":true,
|
"obj/": true,
|
||||||
"obj/":true,
|
"Obj/": true,
|
||||||
"Obj/":true,
|
"ProjectSettings/": true,
|
||||||
"ProjectSettings/":true,
|
"temp/": true,
|
||||||
"temp/":true,
|
"Temp/": true
|
||||||
"Temp/":true
|
|
||||||
},
|
},
|
||||||
"dotnet.preferCSharpExtension": true
|
"dotnet.preferCSharpExtension": true,
|
||||||
|
"dotnet.defaultSolution": "neon_run.sln"
|
||||||
}
|
}
|
||||||
|
|
@ -24,7 +24,7 @@ public class GameManager : MonoBehaviour
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update is called once per frame
|
// Update is called once per frame
|
||||||
void Update()
|
void FixedUpdate()
|
||||||
{
|
{
|
||||||
float input = Input.GetAxis("Vertical");
|
float input = Input.GetAxis("Vertical");
|
||||||
movespeed += input * acceleration * Time.deltaTime;
|
movespeed += input * acceleration * Time.deltaTime;
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ RenderSettings:
|
||||||
m_ReflectionIntensity: 1
|
m_ReflectionIntensity: 1
|
||||||
m_CustomReflection: {fileID: 0}
|
m_CustomReflection: {fileID: 0}
|
||||||
m_Sun: {fileID: 0}
|
m_Sun: {fileID: 0}
|
||||||
m_IndirectSpecularColor: {r: 0.40509024, g: 0.10189833, b: 0.7762195, a: 1}
|
m_IndirectSpecularColor: {r: 0.4001094, g: 0.09552942, b: 0.77456146, a: 1}
|
||||||
m_UseRadianceAmbientProbe: 0
|
m_UseRadianceAmbientProbe: 0
|
||||||
--- !u!157 &3
|
--- !u!157 &3
|
||||||
LightmapSettings:
|
LightmapSettings:
|
||||||
|
|
@ -620,7 +620,7 @@ Camera:
|
||||||
width: 1
|
width: 1
|
||||||
height: 1
|
height: 1
|
||||||
near clip plane: 0.3
|
near clip plane: 0.3
|
||||||
far clip plane: 1000
|
far clip plane: 600
|
||||||
field of view: 53.6
|
field of view: 53.6
|
||||||
orthographic: 0
|
orthographic: 0
|
||||||
orthographic size: 5
|
orthographic size: 5
|
||||||
|
|
@ -1501,12 +1501,12 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_UiScaleMode: 0
|
m_UiScaleMode: 1
|
||||||
m_ReferencePixelsPerUnit: 100
|
m_ReferencePixelsPerUnit: 100
|
||||||
m_ScaleFactor: 1
|
m_ScaleFactor: 1
|
||||||
m_ReferenceResolution: {x: 800, y: 600}
|
m_ReferenceResolution: {x: 1000, y: 562.5}
|
||||||
m_ScreenMatchMode: 0
|
m_ScreenMatchMode: 0
|
||||||
m_MatchWidthOrHeight: 0
|
m_MatchWidthOrHeight: 0.5
|
||||||
m_PhysicalUnit: 3
|
m_PhysicalUnit: 3
|
||||||
m_FallbackScreenDPI: 96
|
m_FallbackScreenDPI: 96
|
||||||
m_DefaultSpriteDPI: 96
|
m_DefaultSpriteDPI: 96
|
||||||
|
|
@ -1634,11 +1634,11 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 11500000, guid: 25973655c6700c72bba96cc62e9d7817, type: 3}
|
m_Script: {fileID: 11500000, guid: 25973655c6700c72bba96cc62e9d7817, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
acceleration: 2
|
acceleration: 4
|
||||||
maxspeed: 30
|
maxspeed: 30
|
||||||
came: {fileID: 330585545}
|
came: {fileID: 330585545}
|
||||||
minFov: 50
|
minFov: 45
|
||||||
maxFov: 70
|
maxFov: 73
|
||||||
Distance: 0
|
Distance: 0
|
||||||
txtSpeed: {fileID: 773073356}
|
txtSpeed: {fileID: 773073356}
|
||||||
txtDistance: {fileID: 1721910756}
|
txtDistance: {fileID: 1721910756}
|
||||||
|
|
@ -2233,7 +2233,7 @@ PrefabInstance:
|
||||||
- target: {fileID: 7163100787474200811, guid: 2ec69c05c0913d1b19d2df80ea44d31c,
|
- target: {fileID: 7163100787474200811, guid: 2ec69c05c0913d1b19d2df80ea44d31c,
|
||||||
type: 3}
|
type: 3}
|
||||||
propertyPath: m_LocalPosition.z
|
propertyPath: m_LocalPosition.z
|
||||||
value: 0
|
value: 61.15
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 7163100787474200811, guid: 2ec69c05c0913d1b19d2df80ea44d31c,
|
- target: {fileID: 7163100787474200811, guid: 2ec69c05c0913d1b19d2df80ea44d31c,
|
||||||
type: 3}
|
type: 3}
|
||||||
|
|
|
||||||
|
|
@ -4,16 +4,32 @@ using UnityEngine;
|
||||||
|
|
||||||
public class SectionTriger : MonoBehaviour
|
public class SectionTriger : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
public static int counter =0;
|
||||||
public GameObject[] roadSection;
|
public GameObject[] roadSection;
|
||||||
|
|
||||||
public float speed = -100f;
|
public float speed = -100f;
|
||||||
|
|
||||||
|
int headroom = 5;
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
if(counter ==0){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnTriggerEnter(Collider other)
|
private void OnTriggerEnter(Collider other)
|
||||||
{
|
{
|
||||||
if (other.gameObject.CompareTag("Trigger"))
|
if (other.gameObject.CompareTag("Trigger"))
|
||||||
{
|
{
|
||||||
int randomNumber = Random.Range(0, roadSection.Length);
|
int randomNumber = Random.Range(0, roadSection.Length);
|
||||||
Instantiate(roadSection[randomNumber], new Vector3(0, 0, other.transform.position.z + speed), Quaternion.identity);
|
if(counter == 0){
|
||||||
|
for(int i=0; i < headroom; i++){
|
||||||
|
Instantiate(roadSection[Random.Range(0, roadSection.Length)], new Vector3(0, 0, other.transform.position.z + (speed * (i+1))), Quaternion.identity);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Instantiate(roadSection[randomNumber], new Vector3(0, 0, other.transform.position.z + (speed * (headroom+1))), Quaternion.identity);
|
||||||
|
counter++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,113 +1,98 @@
|
||||||
%YAML 1.1
|
%YAML 1.1
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
--- !u!114 &-1878332245247344467
|
--- !u!114 &-1878332245247344467
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 0}
|
m_GameObject: {fileID: 0}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 11500000, guid: f62c9c65cf3354c93be831c8bc075510, type: 3}
|
m_Script: {fileID: 11500000, guid: f62c9c65cf3354c93be831c8bc075510, type: 3}
|
||||||
m_Name: SSAO
|
m_Name: SSAO
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Active: 1
|
m_Active: 1
|
||||||
m_Settings:
|
m_Settings:
|
||||||
AOMethod: 1
|
AOMethod: 1
|
||||||
Downsample: 0
|
Downsample: 0
|
||||||
AfterOpaque: 0
|
AfterOpaque: 0
|
||||||
Source: 1
|
Source: 1
|
||||||
NormalSamples: 1
|
NormalSamples: 1
|
||||||
Intensity: 0.5
|
Intensity: 0.5
|
||||||
DirectLightingStrength: 0.25
|
DirectLightingStrength: 0.25
|
||||||
Radius: 0.25
|
Radius: 0.25
|
||||||
Samples: 0
|
Samples: 0
|
||||||
BlurQuality: 0
|
BlurQuality: 0
|
||||||
Falloff: 100
|
Falloff: 100
|
||||||
SampleCount: -1
|
SampleCount: -1
|
||||||
m_BlueNoise256Textures:
|
m_BlueNoise256Textures:
|
||||||
- {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3}
|
- {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3}
|
||||||
- {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3}
|
- {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3}
|
||||||
- {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3}
|
- {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3}
|
||||||
- {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3}
|
- {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3}
|
||||||
- {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3}
|
- {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3}
|
||||||
- {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3}
|
- {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3}
|
||||||
- {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3}
|
- {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3}
|
||||||
m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3}
|
m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3}
|
||||||
--- !u!114 &11400000
|
--- !u!114 &11400000
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 0}
|
m_GameObject: {fileID: 0}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3}
|
m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3}
|
||||||
m_Name: URP-HighFidelity-Renderer
|
m_Name: URP-HighFidelity-Renderer
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
debugShaders:
|
debugShaders:
|
||||||
debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7,
|
debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7,
|
||||||
type: 3}
|
type: 3}
|
||||||
hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
|
hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
|
||||||
probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959,
|
m_RendererFeatures:
|
||||||
type: 3}
|
- {fileID: -1878332245247344467}
|
||||||
probeVolumeResources:
|
m_RendererFeatureMap: adc0de57c6d2eee5
|
||||||
probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae,
|
m_UseNativeRenderPass: 0
|
||||||
type: 3}
|
postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
|
||||||
probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607,
|
xrSystemData: {fileID: 11400000, guid: 60e1133243b97e347b653163a8c01b64, type: 2}
|
||||||
type: 3}
|
shaders:
|
||||||
probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664,
|
blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3}
|
||||||
type: 3}
|
copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3}
|
||||||
probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7,
|
screenSpaceShadowPS: {fileID: 0}
|
||||||
type: 3}
|
samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3}
|
||||||
probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe,
|
stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3}
|
||||||
type: 3}
|
fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3}
|
||||||
probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e,
|
fallbackLoadingPS: {fileID: 4800000, guid: 7f888aff2ac86494babad1c2c5daeee2, type: 3}
|
||||||
type: 3}
|
materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3}
|
||||||
m_RendererFeatures:
|
coreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3}
|
||||||
- {fileID: -1878332245247344467}
|
coreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b,
|
||||||
m_RendererFeatureMap: adc0de57c6d2eee5
|
type: 3}
|
||||||
m_UseNativeRenderPass: 0
|
blitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3}
|
||||||
postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
|
cameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf,
|
||||||
xrSystemData: {fileID: 11400000, guid: 60e1133243b97e347b653163a8c01b64, type: 2}
|
type: 3}
|
||||||
shaders:
|
objectMotionVector: {fileID: 4800000, guid: 7b3ede40266cd49a395def176e1bc486,
|
||||||
blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3}
|
type: 3}
|
||||||
copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3}
|
dataDrivenLensFlare: {fileID: 4800000, guid: 6cda457ac28612740adb23da5d39ea92,
|
||||||
screenSpaceShadowPS: {fileID: 0}
|
type: 3}
|
||||||
samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3}
|
m_AssetVersion: 2
|
||||||
stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3}
|
m_OpaqueLayerMask:
|
||||||
fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3}
|
serializedVersion: 2
|
||||||
fallbackLoadingPS: {fileID: 4800000, guid: 7f888aff2ac86494babad1c2c5daeee2, type: 3}
|
m_Bits: 4294967295
|
||||||
materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3}
|
m_TransparentLayerMask:
|
||||||
coreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3}
|
serializedVersion: 2
|
||||||
coreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b,
|
m_Bits: 4294967295
|
||||||
type: 3}
|
m_DefaultStencilState:
|
||||||
blitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3}
|
overrideStencilState: 0
|
||||||
cameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf,
|
stencilReference: 0
|
||||||
type: 3}
|
stencilCompareFunction: 8
|
||||||
screenSpaceLensFlare: {fileID: 4800000, guid: 701880fecb344ea4c9cd0db3407ab287,
|
passOperation: 2
|
||||||
type: 3}
|
failOperation: 0
|
||||||
dataDrivenLensFlare: {fileID: 4800000, guid: 6cda457ac28612740adb23da5d39ea92,
|
zFailOperation: 0
|
||||||
type: 3}
|
m_ShadowTransparentReceive: 1
|
||||||
m_AssetVersion: 2
|
m_RenderingMode: 0
|
||||||
m_OpaqueLayerMask:
|
m_DepthPrimingMode: 0
|
||||||
serializedVersion: 2
|
m_CopyDepthMode: 0
|
||||||
m_Bits: 4294967295
|
m_AccurateGbufferNormals: 0
|
||||||
m_TransparentLayerMask:
|
m_IntermediateTextureMode: 1
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 4294967295
|
|
||||||
m_DefaultStencilState:
|
|
||||||
overrideStencilState: 0
|
|
||||||
stencilReference: 0
|
|
||||||
stencilCompareFunction: 8
|
|
||||||
passOperation: 2
|
|
||||||
failOperation: 0
|
|
||||||
zFailOperation: 0
|
|
||||||
m_ShadowTransparentReceive: 1
|
|
||||||
m_RenderingMode: 0
|
|
||||||
m_DepthPrimingMode: 0
|
|
||||||
m_CopyDepthMode: 0
|
|
||||||
m_AccurateGbufferNormals: 0
|
|
||||||
m_IntermediateTextureMode: 1
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"com.boxqkrtm.ide.cursor": "https://github.com/boxqkrtm/com.unity.ide.cursor.git",
|
||||||
"com.unity.collab-proxy": "2.9.3",
|
"com.unity.collab-proxy": "2.9.3",
|
||||||
"com.unity.ide.rider": "3.0.37",
|
"com.unity.ide.rider": "3.0.37",
|
||||||
"com.unity.ide.visualstudio": "2.0.18",
|
"com.unity.ide.visualstudio": "2.0.18",
|
||||||
|
|
@ -9,6 +10,7 @@
|
||||||
"com.unity.test-framework": "1.1.33",
|
"com.unity.test-framework": "1.1.33",
|
||||||
"com.unity.textmeshpro": "3.0.6",
|
"com.unity.textmeshpro": "3.0.6",
|
||||||
"com.unity.timeline": "1.7.5",
|
"com.unity.timeline": "1.7.5",
|
||||||
|
"com.unity.toolchain.win-x86_64-linux-x86_64": "2.0.10",
|
||||||
"com.unity.ugui": "1.0.0",
|
"com.unity.ugui": "1.0.0",
|
||||||
"com.unity.visualscripting": "1.9.0",
|
"com.unity.visualscripting": "1.9.0",
|
||||||
"com.unity.modules.ai": "1.0.0",
|
"com.unity.modules.ai": "1.0.0",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,14 @@
|
||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"com.boxqkrtm.ide.cursor": {
|
||||||
|
"version": "https://github.com/boxqkrtm/com.unity.ide.cursor.git",
|
||||||
|
"depth": 0,
|
||||||
|
"source": "git",
|
||||||
|
"dependencies": {
|
||||||
|
"com.unity.test-framework": "1.1.9"
|
||||||
|
},
|
||||||
|
"hash": "38fecf55e4fd94ccfe58a92ed8ad1a529ba1694e"
|
||||||
|
},
|
||||||
"com.unity.burst": {
|
"com.unity.burst": {
|
||||||
"version": "1.8.8",
|
"version": "1.8.8",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
|
|
@ -102,6 +111,22 @@
|
||||||
"com.unity.searcher": "4.9.2"
|
"com.unity.searcher": "4.9.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"com.unity.sysroot": {
|
||||||
|
"version": "2.0.10",
|
||||||
|
"depth": 1,
|
||||||
|
"source": "registry",
|
||||||
|
"dependencies": {},
|
||||||
|
"url": "https://packages.unity.com"
|
||||||
|
},
|
||||||
|
"com.unity.sysroot.linux-x86_64": {
|
||||||
|
"version": "2.0.9",
|
||||||
|
"depth": 1,
|
||||||
|
"source": "registry",
|
||||||
|
"dependencies": {
|
||||||
|
"com.unity.sysroot": "2.0.10"
|
||||||
|
},
|
||||||
|
"url": "https://packages.unity.com"
|
||||||
|
},
|
||||||
"com.unity.test-framework": {
|
"com.unity.test-framework": {
|
||||||
"version": "1.1.33",
|
"version": "1.1.33",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
|
|
@ -134,6 +159,16 @@
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
|
"com.unity.toolchain.win-x86_64-linux-x86_64": {
|
||||||
|
"version": "2.0.10",
|
||||||
|
"depth": 0,
|
||||||
|
"source": "registry",
|
||||||
|
"dependencies": {
|
||||||
|
"com.unity.sysroot": "2.0.10",
|
||||||
|
"com.unity.sysroot.linux-x86_64": "2.0.9"
|
||||||
|
},
|
||||||
|
"url": "https://packages.unity.com"
|
||||||
|
},
|
||||||
"com.unity.ugui": {
|
"com.unity.ugui": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user